You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you use the repository's GITHUB_TOKEN to perform tasks on behalf of the GitHub Actions app, events triggered by the GITHUB_TOKEN will not create a new workflow run. This prevents you from accidentally creating recursive workflow runs. For example, if a workflow run pushes code using the repository's GITHUB_TOKEN, a new workflow will not run even when the repository contains a workflow configured to run when push events occur.
If I remember correctly it also has to do with permissions, your regular github.token has read only permissions, you need to setup a REPO_ACCESS_TOKEN which has write permissions for an action like this.
Found out that workflows by GitHub actions using a GitHub token don't trigger other workflows (due to concern of infinite loop).
Is it as simple as swapping to my PAT to avoid this issue?
The text was updated successfully, but these errors were encountered: