-
Notifications
You must be signed in to change notification settings - Fork 714
Closed
Description
Current Behavior
Our CI workflow is currently triggered by the ready_for_review event, as configured here:
stacks-core/.github/workflows/ci.yml
Lines 17 to 22 in 1015b9f
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review |
This means that when a pull request is converted from "draft" to "ready" for review, the workflow runs again, even though it has already been executed for the latest commit due to the synchronize trigger.
Proposal
Remove the ready_for_review trigger to:
- Avoid redundant workflow runs and save CI resources
- Ensure that marking a PR as “ready for review” simply presents the existing check results to reviewers, without triggering a new run
@wileyj what’s your take on this change?
Metadata
Metadata
Assignees
Type
Projects
Status
Status: ✅ Done