How to use same intent multiple times in same story

I am working on chatbot which will be integrated with whatsapp. i have implemented a menu option which works fine for one case. But as i have to give menu option to users many times. So i don’t know how to implement that.

You can do it normally

- story: my story
  steps:
  - intent: my_intent
  - action: action_one
  - intent: my_intent
  - action: action_two
  - intent: my_intent
  - action: action_three

Make sure you use an appropriate max_history in the policies:

policies:
- name: AugmentedMemoizationPolicy
  max_history: 6
- name: TEDPolicy
  max_history: 6