ci: prefer PR-driven triggers and deduplicate runs via concurrency group - #76
Closed
MLopez-Ibanez with Copilot wants to merge 2 commits into
Closed
ci: prefer PR-driven triggers and deduplicate runs via concurrency group#76MLopez-Ibanez with Copilot wants to merge 2 commits into
MLopez-Ibanez with Copilot wants to merge 2 commits into
Conversation
Co-authored-by: MLopez-Ibanez <2620021+MLopez-Ibanez@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update GitHub Actions workflows to prioritize PR triggers
ci: prefer PR-driven triggers and deduplicate runs via concurrency group
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Force-pushes to PR branches were not reliably triggering CI because
pushtriggers exclude feature branches, andpull_requesttriggers had no mechanism to cancel stale runs. The result was silent CI gaps on active PRs.Changes
pull_requestbeforepushinC.yml,python.yml,R.yml,matlab.yml— PRs are the primary CI signal for feature branches; ordering reflects intent.pushretained formainandv[0-9]+*only — CI still runs on merge and release branches;python.ymlretains itsrelease:trigger for wheel publishing.docs-preview-cleanup.yml,rchk.yml, andrevdepcheck.ymlare unchanged — they useworkflow_call/workflow_dispatch/closed-PR triggers that don't follow this pattern.