Skip to content

Commit b25b746

Browse files
sobolevnhugovk
andauthored
gh-114788: Do not run JIT workflow on unrelated changes (#114789)
Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 78c2545 commit b25b746

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/jit.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
name: JIT
22
on:
33
pull_request:
4-
paths: '**jit**'
4+
paths:
5+
- '**jit**'
6+
- 'Python/bytecodes.c'
57
push:
6-
paths: '**jit**'
8+
paths:
9+
- '**jit**'
10+
- 'Python/bytecodes.c'
711
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15+
cancel-in-progress: true
16+
817
jobs:
918
jit:
1019
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})

0 commit comments

Comments
 (0)