File tree 6 files changed +22
-14
lines changed
6 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 23
23
shell : bash -l {0}
24
24
25
25
concurrency :
26
- group : ${{ github.ref }}-checks
27
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
26
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
27
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-checks
28
+ cancel-in-progress : true
28
29
29
30
steps :
30
31
- name : Checkout
@@ -102,7 +103,8 @@ jobs:
102
103
runs-on : ubuntu-latest
103
104
104
105
concurrency :
105
- group : ${{ github.ref }}-web-docs
106
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
107
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-web-docs
106
108
cancel-in-progress : true
107
109
108
110
steps :
@@ -164,7 +166,8 @@ jobs:
164
166
matrix :
165
167
pattern : ["not slow and not network and not clipboard", "slow"]
166
168
concurrency :
167
- group : ${{ github.ref }}-data_manager-${{ matrix.pattern }}
169
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
170
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager-${{ matrix.pattern }}
168
171
cancel-in-progress : true
169
172
170
173
steps :
Original file line number Diff line number Diff line change 31
31
fail-fast : false
32
32
33
33
concurrency :
34
- group : ${{ github.ref }}-${{ matrix.ENV_FILE }}
35
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
34
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
35
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.ENV_FILE }}
36
+ cancel-in-progress : true
36
37
37
38
services :
38
39
mysql :
Original file line number Diff line number Diff line change 46
46
TEST_ARGS : ${{ matrix.settings[6] }}
47
47
PYTEST_TARGET : pandas
48
48
concurrency :
49
- group : ${{ github.ref }}-${{ matrix.settings[0] }}
50
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
49
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
50
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.settings[0] }}
51
+ cancel-in-progress : true
51
52
52
53
steps :
53
54
- name : Checkout
Original file line number Diff line number Diff line change 11
11
pre-commit :
12
12
runs-on : ubuntu-latest
13
13
concurrency :
14
- group : ${{ github.ref }}-pre-commit
15
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
14
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
15
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-pre-commit
16
+ cancel-in-progress : true
16
17
steps :
17
18
- uses : actions/checkout@v2
18
19
- uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 31
31
timeout-minutes : 80
32
32
33
33
concurrency :
34
- group : ${{ github.ref }}-${{ matrix.os }}-${{ matrix.pytest_target }}-dev
35
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
34
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
35
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.os }}-${{ matrix.pytest_target }}-dev
36
+ cancel-in-progress : true
36
37
37
38
steps :
38
39
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 25
25
matrix :
26
26
python-version : ["3.8", "3.9", "3.10"]
27
27
concurrency :
28
- group : ${{github.ref}}-${{matrix.python-version}}-sdist
29
- cancel-in-progress : ${{github.event_name == 'pull_request'}}
28
+ # https://github.community/t/concurrecy-not-work-for-push/183068/7
29
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{matrix.python-version}}-sdist
30
+ cancel-in-progress : true
30
31
31
32
steps :
32
33
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments