Skip to content

Commit

Permalink
Allow more workflows to be triggered by github ui
Browse files Browse the repository at this point in the history
This is mostly to allow triggering package tests directly from
github UI but no harm enabling it for a couple more.
  • Loading branch information
svenklemm committed Jan 24, 2025
1 parent 2c52b54 commit 2194a61
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ name: ABI Test
- trigger/abi
pull_request:
paths: .github/workflows/abi.yaml
workflow_dispatch:
jobs:
config:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/apt-arm-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ name: APT ARM64 packages
branches:
- release_test
- trigger/package_test
workflow_dispatch:
jobs:
apt_tests:
name: APT ARM64 ${{ matrix.image }} PG${{ matrix.pg }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/apt-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ name: APT packages
branches:
- release_test
- trigger/package_test
workflow_dispatch:
jobs:
apt_tests:
name: APT ${{ matrix.image }} PG${{ matrix.pg }} ${{ matrix.license }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name: Coverity
push:
branches:
- coverity_scan
workflow_dispatch:
jobs:

coverity:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ name: Test Docker images
branches:
- release_test
- trigger/package_test
workflow_dispatch:
jobs:
docker_tests:
name: ${{ matrix.image }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ name: Homebrew
- release_test
- trigger/package_test
- trigger/homebrew_test
workflow_dispatch:

jobs:
homebrew:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/libfuzzer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ name: Libfuzzer
paths:
- .github/workflows/libfuzzer.yaml
- 'tsl/test/fuzzing/compression/**'
workflow_dispatch:

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rpm-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ name: RPM packages
branches:
- release_test
- trigger/package_test
workflow_dispatch:

jobs:
rpm_tests:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sanitizer-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ name: Sanitizer test
- trigger/sanitizer
pull_request:
paths: .github/workflows/sanitizer-build-and-test.yaml
workflow_dispatch:

env:
name: "Sanitizer"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/snapshot-abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ name: ABI Test Against Snapshot
- trigger/snapshot-abi
pull_request:
paths: .github/workflows/snapshot-abi.yaml
workflow_dispatch:

jobs:
config:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ name: Test Update and Downgrade
- main
- prerelease_test
pull_request:
workflow_dispatch:

jobs:
update_test:
name: Update test PG${{ matrix.pg }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ name: Regression Windows
- 'LICENSE*'
- NOTICE
- 'bootstrap*'
workflow_dispatch:
jobs:
config:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ name: Windows Packages
branches:
- release_test
- trigger/windows_packages
workflow_dispatch:

jobs:
config:
Expand Down

0 comments on commit 2194a61

Please sign in to comment.