This looks like a major bug because not only is there no way to see/reference the old name, ISC seems to use the old and new names in different functions
This is a known issue with ISC: renaming a role in the UI only changes the display name, not the underlying technical name. The old name persists in workflow filters and other backend functions, even though it’s hidden from the UI (source).
Workaround: Create a new role with the correct name and delete the old one—unfortunately, there’s no direct fix or way to update the technical name. This inconsistency has been flagged previously without resolution.
The Provisioning Completed payload only gives you attributeRequests with (attributeName, attributeValue, operation). If the role membership event is still emitting the original role “name” string in attributeValue, any regex keyed on the new label won’t ever fire.
workaround so your workflow stays durable
Stop filtering on the role label. Filter on “Role add” generically, then branch inside the workflow using a stable identifier (role id / metadata), not the display string.
Example trigger filter (broad but reliable): $.accountRequests[?(@.source.id==‘IdentityNow’)].attributeRequests[?(@.attributeName==‘roles’ && @.operation==‘Add’)]
In the workflow, extract the role id if it’s present in the attributeValue (some tenants append ids in brackets), then GET /v3/roles/:id and compare on id or on a metadata key you control (accessModelMetadata).
That avoids brittle string matching and survives future renames.
If you truly need the “technical name” to change everywhere, the only clean option is what Jason mentioned:create a new role with the desired name, migrate assignments, then delete the old role.
If the “broad trigger + resolve role by id + match on id/metadata” approach works in your tenant, please mark this reply as the solution so others can find it.
Thanks for the response. The workflow needs to trigger only on a specific set of roles from a specific source, eg: “*Org Business Dev01 - Src1“, where “Dev01“ is a specific subset of roles from Entra ID source “Src1“