Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/asf-allowlist-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ name: "ASF Allowlist Check"

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- ".github/**"
push:
Expand All @@ -38,6 +39,7 @@ permissions:

jobs:
asf-allowlist-check:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ on:
push:
branches: [ "main" ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [ "main" ]
schedule:
- cron: '16 4 * * 1'
Expand All @@ -32,6 +33,7 @@ permissions:

jobs:
analyze:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: Analyze Actions
runs-on: ubuntu-slim
permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cpp-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ name: C++ Linter

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '.github/**'
- 'ci/**'
Expand All @@ -28,6 +29,7 @@ on:

jobs:
cpp-linter:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-24.04
permissions:
contents: read
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@

name: "Run License Check"

on: pull_request
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

permissions:
contents: read

jobs:
license-check:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: "License Check"
runs-on: ubuntu-slim
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ name: pre-commit

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- '**'
Expand All @@ -29,6 +30,7 @@ permissions:

jobs:
pre-commit:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/s3_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
tags:
- '**'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
Expand All @@ -39,6 +40,7 @@ env:

jobs:
s3-minio:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: S3 (${{ matrix.title }})
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 35
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sanitizer_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
tags:
- '**'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
Expand All @@ -35,6 +36,7 @@ permissions:

jobs:
sanitizer-test:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: "ASAN and UBSAN Tests"
runs-on: ubuntu-24.04
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
tags:
- '**'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
Expand All @@ -38,6 +39,7 @@ env:

jobs:
ubuntu:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: AMD64 Ubuntu 24.04
runs-on: ubuntu-24.04
timeout-minutes: 30
Expand All @@ -64,6 +66,7 @@ jobs:
CXX: g++-14
run: ci/scripts/build_example.sh $(pwd)/example
macos:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: AArch64 macOS 26
runs-on: macos-26
timeout-minutes: 30
Expand All @@ -81,6 +84,7 @@ jobs:
shell: bash
run: ci/scripts/build_example.sh $(pwd)/example
windows:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: AMD64 Windows 2025
runs-on: windows-2025
timeout-minutes: 60
Expand Down Expand Up @@ -116,6 +120,7 @@ jobs:
$ErrorActionPreference = "Stop"
bash -lc 'ci/scripts/build_example.sh $(pwd)/example'
meson:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: Meson - ${{ matrix.title }}
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 30
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: ["**"]

permissions: {}

jobs:
zizmor:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
name: Run zizmor 🌈
runs-on: ubuntu-24.04
permissions: {}
Expand Down
Loading