File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ name: Python Tests
22
33on :
44 push :
5- branches : ["**"]
5+ # Exclude beta and main: those branches re-trigger this workflow via
6+ # workflow_call from beta-release.yml / release.yml. Without the exclusion,
7+ # a push to beta that touches Server/** fires this workflow twice for the
8+ # same SHA, and GitHub auto-cancels the duplicate.
9+ branches-ignore : [beta, main]
610 paths :
711 - Server/**
812 - .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change 1010 required : false
1111 default : " "
1212 push :
13- branches : ["**"]
13+ # Exclude beta and main: those branches re-trigger this workflow via
14+ # workflow_call from beta-release.yml / release.yml. Without the exclusion,
15+ # a push to beta that touches MCPForUnity/** fires this workflow twice
16+ # for the same SHA, and GitHub's auto-generated concurrency group
17+ # (`unity-tests-refs/heads/beta`) cancels the older run with the noisy
18+ # "higher priority waiting request" annotation.
19+ branches-ignore : [beta, main]
1420 paths :
1521 - TestProjects/UnityMCPTests/**
1622 - MCPForUnity/Editor/**
You can’t perform that action at this time.
0 commit comments