-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
branch protection tests not triggered after PR review auto-update #618
Comments
Weird! That should trigger a |
Turns out this isn't a new problem: https://github.com/orgs/community/discussions/25702 From this post, it sounds like commits coming from actions do not trigger further CI workflows based on tokening (GH is trying to prevent infinitely recursive workflows to the detriment of the situations where one or two recursions are needed!). From the add-and-commit action docs:
And specifically:
It looks like we might be able to explicitly trigger the unit tests to work after the UML action has run using a workflow_run. I'll open a PR to do that and we can see if it helps for our next PR. |
Nice research, thank you! |
In #609, a review triggered a UML update (as intended) which added a commit to the PR. This commit did not trigger another round of unit tests (which were previously passing), thus keeping the PR from meeting all required checks (and thus enabling merging). Retriggering the tests on the branch did not result in an updated status because they're still pointing to the commit before the auto-update. We'll have to tweak the unit test triggers to handle this.
The text was updated successfully, but these errors were encountered: