How to add multiple clock-in clock-n in stories.yml

Hello, I need to ask user to N number of ‘clock-in’ ‘clock out’, it’s possible…? As of now this bot will ask one time in this story. how to loop this intents in this storie.yml

story: Attendance

  • intent: attendance

    • action: utter_attendance

    • action: utter_ask_clock_in

    • intent: clock_in

      entities:

      • clock_in: “IN”
    • slot_was_set:

      • clock_in: “IN”
    • action: utter_ask_clock_out

    • intent: clock_out

      entities:

      • clock_out: “OUT”
    • slot_was_set:

      • clock_out: “OUT”
    • action: utter_show_clock_out

Can you provide more background on your use case? Is N an unlimited number of times or a known number?