From 7e2ed2345b02b86636c96377fe5760ebbc89b8bc Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Tue, 19 May 2026 11:21:37 +0200 Subject: [PATCH] Align Actions triggers with the renamed main branch GitHub Actions should only run from the active default branch now that the repo has been renamed to main/dev. This change limits the conda workflow triggers to main for both push and pull_request events, avoiding stale runs from legacy branch names. Constraint: Branch rename already completed on GitHub Rejected: Rely on default-branch behavior alone | too implicit for explicit CI routing Confidence: high Scope-risk: narrow Directive: Keep workflow branch filters in sync with future branch renames Tested: Reviewed workflow diff and verified no other .github/workflows branch selectors remain Not-tested: Live GitHub Actions run after push --- .github/workflows/quest-conda.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/quest-conda.yml b/.github/workflows/quest-conda.yml index abce6a6..e16c0e7 100644 --- a/.github/workflows/quest-conda.yml +++ b/.github/workflows/quest-conda.yml @@ -3,10 +3,14 @@ name: QuEst Conda CI on: workflow_dispatch: push: + branches: + - main paths: - "modules/quest/**" - "modules/quest/.github/workflows/quest-conda.yml" pull_request: + branches: + - main paths: - "modules/quest/**" - "modules/quest/.github/workflows/quest-conda.yml"