docs(workflows): fix offboarding example revoke-role role list format

Closes #49140

The revoke-role step expects multivalued role names, not a
comma-separated string.

Signed-off-by: Thomas DELORGE <thomas.delorge@orbeet.io>
This commit is contained in:
Thomas DELORGE
2026-05-20 23:31:45 +02:00
committed by GitHub
parent a1405663f7
commit a988875ac4
@@ -33,7 +33,10 @@ on: user-group-membership-removed(/Sales)
steps:
- uses: revoke-role
with:
role: "manager,sales-rep,sales-intern"
role:
- sales-rep
- manager
- sales-intern
```
== Tracking user activity and taking actions on inactivity