Two actions after an intent does not working

Hi, I added two utters after one intent. The bot just showing the first one. Is there anything blocking the second action?

Hi! Can you share your stories.yml, domain.yml and rules.yml?

Everything working fine here

domain.yml

version: "3.0"

session_config:
  session_expiration_time: 60
  carry_over_slots_to_new_session: true
intents:
- greet



responses:
  utter_what_can_do:
  - text: What can I do for you?
  utter_goodbye:
  - text: Bye

stories.yml

stories:
  - story: Happy path
    steps:
    - intent: greet
    - action: utter_what_can_do
    - action: utter_goodbye
1 Like

Hi there,

these are the domain and story yml.

domain.yml

version: '3.0'
session_config:
  session_expiration_time: 60
  carry_over_slots_to_new_session: true

intents:
- card_not_working
- card_broken
- give_account_number

responses:
  utter_faq/card_broken:
  - text: If you have noticed the card is bent, snapped, warped, or physically damaged in some way then we will need to replace the card. Can I ask for your account number?
  utter_slots_values:
    - text: "Your accout number is {account_number}"
  utter_replace_card:
    - text: "We have blocked your card {account_number}. We will send you a new card in a week. Cheers!"

story.yml

version: "3.0"

stories:
- story: card broken
  steps:
    - intent: card_not_working
    - intent: card_broken
    - intent: give_account_number
    - entities:
      - account_number
    - action: utter_slots_values
    - action: utter_replace_card

Welcome to the forum!

I answered the same question yesterday. Please see this post: