[CI] Run postcommit for pulldown PRs#22627
Conversation
Signed-off-by: Nick Sarnie <nick.sarnie@intel.com>
|
CI fails not related |
|
I think this will cause dup run in pulldown PR, we removed it intentionally in a8ab2bb . But hopefully something has changed. Let us see. |
|
I can't see how |
|
We can see in the history that post-commit was being run every time before WW23 2026, just skipped in last two PRs WW25 and WW28. In WW23's workflow file https://github.com/intel/llvm/actions/runs/27094331837/workflow , there was no Probably a github CI bug just fixed recently? https://github.blog/changelog/2026-06-18-control-who-and-what-triggers-github-actions-workflows/ just between WW23 and WW25. |
|
Thanks for the investigation, if I understand your analysis correctly the current change merged in this PR seems okay for the current GitHub CI state. If I'm wrong and I need to fix/revert something let me know |
We need to run postcommit in pulldown PRs.
In this PR the job is running twice, once for the
pushaction and once forpull_requestsince we modified the postcommit workflow, but in a normal pulldown won't happen.We can't use the
pull_requestaction because GitHub requires bothbranchesandpathsto be satisfied which won't be true for a normal pulldown.See #22620