Skip to content

Commit f5257f7

Browse files
committed
fix: add self-trigger paths to required workflow filters
Without these, workflow-only PRs never trigger the required checks, leaving them stuck at "Waiting for status to be reported".
1 parent b802013 commit f5257f7

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/mypy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- '!code_to_optimize/js/**'
1313
- 'pyproject.toml'
1414
- 'uv.lock'
15+
- '.github/workflows/mypy.yml'
1516

1617
concurrency:
1718
group: ${{ github.workflow }}-${{ github.ref_name }}

.github/workflows/prek.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- '!code_to_optimize/js/**'
99
- 'pyproject.toml'
1010
- 'uv.lock'
11+
- '.github/workflows/prek.yaml'
1112

1213
concurrency:
1314
group: ${{ github.workflow }}-${{ github.ref_name }}

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'code_to_optimize/**'
1111
- 'pyproject.toml'
1212
- 'uv.lock'
13+
- '.github/workflows/unit-tests.yaml'
1314
workflow_dispatch:
1415

1516
concurrency:

.github/workflows/windows-unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'code_to_optimize/**'
1111
- 'pyproject.toml'
1212
- 'uv.lock'
13+
- '.github/workflows/windows-unit-tests.yml'
1314
workflow_dispatch:
1415

1516
concurrency:

0 commit comments

Comments
 (0)