Fix wrong provider references in workflows documentation

Closes #45077

Signed-off-by: Stefan Guilhen <sguilhen@redhat.com>
This commit is contained in:
Stefan Guilhen 2025-12-23 15:29:33 -03:00 committed by Pedro Igor
parent 66f3868ccf
commit 9865791084
2 changed files with 3 additions and 3 deletions

View File

@ -12,13 +12,13 @@ When a new user is created, a workflow can automatically send a welcome email, a
```yaml
name: Onboarding gold members
on: user_created
on: user-created
if: has-user-attribute('membership','gold')
steps:
- uses: notify-user
with:
message: "Welcome to the Gold Membership program!"
- uses: assign-user-role
- uses: grant-role
with:
role: gold-member
```

View File

@ -11,7 +11,7 @@ In its simplest form, a workflow definition can be defined as follows:
```yaml
name: Onboarding new users
on: user_added
on: user_created
steps:
- uses: notify-user
with: