GitHub-actions bot not triggering Actions #33804
-
Hi, I have an Action that's triggered when a label is added to a Pull Request. It works as expected when I add the UAT label but a workflow run isn't initiated when github-actions bot adds the same label from another Action. How do I get a workflow to initiate when github-actions bot adds a label to a PR?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If you use the
What you can do is create PAT, store it as a secret, and use that instead. Then things will work as if you added the label manually. |
Beta Was this translation helpful? Give feedback.
If you use the
GITHUB_TOKEN
to authorize the labeling, you can't:What you can do is create PAT, store it as a secret, and use that instead. Then things will work as if you added the label manually.