Does not trigger pull request synchronize when making commits back to a branch in a pull request.
Example situation:
A pull request triggers several distinct GitHub Action workflows to run, including one that includes a call to git-auto-commit
All workflows run as expected
The workflow with git-auto-commit successfully makes a commit and pushes the changes back to the branch. This should trigger other workflows to run again, but they don't.
All other workflows do run if I make a new commit to the branch that the pull request is occurring on
Steps to reproduce
Have two workflows with triggers
on:
pull_request:
types: [opened, synchronize, reopened]
One of these can do whatever, the other will do something that changes the files and later has
- uses: stefanzweifel/git-auto-commit-action@v4
To commit the changes (this works).
The expected behavior is that this commit back to the branch will trigger a rerun of both of these workflows since they trigger on pull request "synchronize".
git-auto-commit Version
v4.16.0
Machine Type
Ubuntu (eg. ubuntu-latest)
Bug description
Does not trigger pull request synchronize when making commits back to a branch in a pull request.
Example situation:
git-auto-commit
git-auto-commit
successfully makes a commit and pushes the changes back to the branch. This should trigger other workflows to run again, but they don't.Steps to reproduce
Have two workflows with triggers
One of these can do whatever, the other will do something that changes the files and later has
To commit the changes (this works).
The expected behavior is that this commit back to the branch will trigger a rerun of both of these workflows since they trigger on pull request "synchronize".
Tried solutions
edited
as intypes
(does not work)Example Workflow
Relevant log output
No response