Unable to set boolean slot from stories

slots:
check:
type: bool

find_issues

  • find_issues{“type”:“team”, “id”:“vi.kumar”}
    • slot{“check”: true}
    • action_find_issues
    • slot{“id” : null}
    • slot{“type”: null}
    • slot{“check”: false}

class ActionFindIssues(Action):
def name(self):
return ‘action_find_issues’
def run(self, dispatcher, tracker, domain):
print(“action_find_issues”)
check = tracker.get_slot(“check”)
print("check = ", check)

Problem is - slot “check” is not getting set to True , when intent “find_issues” is trigerred.
from actions.py when i print check , output is None kindly help me through this.

- slot{...} doesn’t set any slots, it is an indicator that a slot was set by entity or previously executed action

@Ghostvv So I need to call a custom action for this and set the slot from there right.

yes

@Ghostvv
thank you