Workflow is not triggered from "Synchronize" event from a commit from GitHub Actions #2084
Unanswered
joshkotrous
asked this question in
Q&A
Replies: 1 comment
-
@joshkotrous Your question is 2 years old but I came across this while trying to debug the same type of issue. This action has some documentation around this behavior: https://github.com/EndBug/add-and-commit#the-commit-from-the-action-is-not-triggering-ci In short, if a workflow checks out and commits with the default action token, "GitHub sees that the push event has been triggered by a commit generated by CI, and doesn't run any further checks to avoid unintentional check loops." Solution as described there is to use a personal access token (PAT) or Github App token to do the check out and commit. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a pipeline setup in this repository: https://github.com/joshkotrous/developer-portfolio-v1 that is supposed to trigger based off of the Synchronize event on PRs to master. I am using another workflow to update the version number in the package.json file and commit this to the repo. For some reason this commit does not trigger the Synchronize action. Committing from my account does trigger the action:
Is this an issue or incompatibility specifically to commits from GitHub Actions?
Beta Was this translation helpful? Give feedback.
All reactions