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/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ permissions:

jobs:
go-test:
# Skip for release-please PRs (skipped jobs report as "success" for required checks)
if: github.event_name == 'push' || !startsWith(github.head_ref, 'release-please--')
runs-on: ubuntu-latest
defaults:
run:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ permissions:

jobs:
integration-test:
# Skip for release-please PRs; only run on label or manual dispatch
if: >-
github.event_name == 'workflow_dispatch' ||
github.event.label.name == 'integration-test'
!startsWith(github.head_ref || '', 'release-please--') &&
(github.event_name == 'workflow_dispatch' ||
github.event.label.name == 'integration-test')
runs-on: ubuntu-latest
timeout-minutes: 15
environment: integration
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ permissions:

jobs:
precommit:
# Skip for release-please PRs (skipped jobs report as "success" for required checks)
if: github.event_name == 'push' || !startsWith(github.head_ref, 'release-please--')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
Loading