Skip to content

Commit 2aa0049

Browse files
committed
Make the GHA workflows respect "skip_buildbots"
1 parent d5ec0bb commit 2aa0049

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/presubmit-clang-tidy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ permissions:
1919

2020
jobs:
2121
check_clang_tidy:
22+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip_buildbots') }}
2223
name: Check clang-tidy
2324
runs-on: macos-latest
2425
steps:

.github/workflows/testing-arm-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- "packaging/**"
1818
- "Makefile"
1919
- "Makefile.inc"
20-
workflow_dispatch:
2120

2221
concurrency:
2322
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -28,6 +27,7 @@ permissions:
2827

2928
jobs:
3029
arm-linux:
30+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip_buildbots') }}
3131
name: arm-${{ matrix.bits }} / ${{ matrix.uv_group }}
3232
runs-on: ubuntu-24.04-arm
3333
strategy:

.github/workflows/testing-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- "packaging/**"
1818
- "Makefile"
1919
- "Makefile.inc"
20-
workflow_dispatch:
2120

2221
concurrency:
2322
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -28,6 +27,7 @@ permissions:
2827

2928
jobs:
3029
linux:
30+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip_buildbots') }}
3131
name: linux-${{ matrix.bits }} / ${{ matrix.uv_group }}
3232
runs-on: ubuntu-24.04
3333
strategy:

.github/workflows/testing-make.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ permissions:
4444

4545
jobs:
4646
build_make:
47+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip_buildbots') }}
4748
name: build on ${{ matrix.os }}
4849

4950
strategy:

.github/workflows/testing-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ on:
1717
- "packaging/**"
1818
- "Makefile"
1919
- "Makefile.inc"
20-
workflow_dispatch:
2120

2221
concurrency:
2322
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -32,6 +31,7 @@ defaults:
3231

3332
jobs:
3433
windows:
34+
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip_buildbots') }}
3535
name: windows-${{ matrix.bits }} / ${{ matrix.uv_group }}
3636
runs-on: windows-2022
3737
strategy:

0 commit comments

Comments
 (0)