I used auth0-deploy-cli to import an action. Here is my yaml -
actions:
- name: init-user
code: ./actions/init-user.js
deployed: true
# runtime: node16
supported_triggers:
- id: post-login
version: v2
secrets:
- name: domain
value: XXX
- name: clientId
value: XXX
- name: clientSecret
value: XXX
While the action is imported, it is not added to the login flow as I was expecting it to be -
What do I do in the yaml configuration to make it part of the login flow?
