Hi everyone,
I’m trying out the workflow feature. I want to disable users and use the joining of a group or the login as trigger.
I have a minimal workflow as follows:
name: Disable inactive users 2
enabled: true
on: user_group_membership_added(test-user-workflow2)
concurrency:
restart-in-progress: "true"
steps:
- uses: disable-user
after: 10s
I can see the event in the keycloak logs when I add a user to the group, however, the workflow is not executing. I also tried a schedule trigger and the user login event as trigger, both do not work.
If I spin up a keycloak locally on my machine and add this workflow, it does work.
Is there any configuration that might be missing on the system where it does not work, that would cause a workflow not to trigger?
Thanks and best regards
Paul