File tree 6 files changed +8
-5
lines changed
6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 23
23
24
24
concurrency :
25
25
group : ${{ github.ref }}-checks
26
- cancel-in-progress : true
26
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
27
27
28
28
steps :
29
29
- name : Checkout
Original file line number Diff line number Diff line change 31
31
32
32
concurrency :
33
33
group : ${{ github.ref }}-${{ matrix.ENV_FILE }}
34
- cancel-in-progress : true
34
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
35
35
36
36
services :
37
37
mysql :
Original file line number Diff line number Diff line change 45
45
TEST_ARGS : ${{ matrix.settings[6] }}
46
46
concurrency :
47
47
group : ${{ github.ref }}-${{ matrix.settings[0] }}
48
- cancel-in-progress : true
48
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
49
49
50
50
steps :
51
51
- name : Checkout
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
concurrency :
13
13
group : ${{ github.ref }}-pre-commit
14
- cancel-in-progress : true
14
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
15
15
steps :
16
16
- uses : actions/checkout@v2
17
17
- uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 25
25
26
26
concurrency :
27
27
group : ${{ github.ref }}-dev
28
- cancel-in-progress : true
28
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
29
29
30
30
steps :
31
31
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 23
23
fail-fast : false
24
24
matrix :
25
25
python-version : ["3.8", "3.9"]
26
+ concurrency :
27
+ group : ${{github.ref}}-${{matrix.python-version}}-sdist
28
+ cancel-in-progress : ${{github.event_name == 'pull_request'}}
26
29
27
30
steps :
28
31
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments