mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 14:20:08 +01:00
push: branches: ["*"] matched feature branches, so every push to a branch with an open PR fired both a 'push' and a 'pull_request' event. Their concurrency groups differ (refs/heads/<branch> vs refs/pull/<n>/merge), so cancel-in-progress could not dedup them — the full multi-arch build ran twice on each push, doubling CI minutes. Scope push to branches: ["main"]; pull_request remains the validator for feature branches. Tag pushes (v*.*.*), schedule, and workflow_dispatch are under separate filters and are unaffected.