imbajin commented on code in PR #2984:
URL: https://github.com/apache/hugegraph/pull/2984#discussion_r3067701724
##########
.github/workflows/rerun-ci.yml:
##########
@@ -0,0 +1,85 @@
+name: "Rerun CI"
+
+on:
+ workflow_run:
+ workflows:
+ - "HugeGraph-Server CI"
+ - "HugeGraph-Commons CI"
+ - "HugeGraph-PD & Store & Hstore CI"
+ - "Cluster Test CI"
+ types:
+ - completed
+ branches:
Review Comment:
⚠️ `workflow_run.branches` is evaluated against the upstream workflow run
branch, so this will only fire when the source CI ran on
`master`/`release-*`/`test-*`. Ordinary feature-branch PRs will not match,
which means the auto-rerun controller is effectively disabled for most pull
requests and no longer matches the flaky-PR retry goal. Please remove this
filter and keep the branch/event gating in the decision step instead.
```suggestion
on:
workflow_run:
workflows:
- "HugeGraph-Server CI"
- "HugeGraph-Commons CI"
- "HugeGraph-PD & Store & Hstore CI"
- "Cluster Test CI"
types:
- completed
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]