Skip to content

Commit

Permalink
Merge pull request #531 from ngrok/hkatz/e2e-4
Browse files Browse the repository at this point in the history
Ensure build-and-test runs on push events
  • Loading branch information
hjkatz authored Nov 27, 2024
2 parents 5024baf + f5da902 commit 45dd8b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- changes
- kubebuilder-diff
if: |
(github.event.type == 'PushEvent' && github.ref_name == 'main')
(github.event_name == 'push' && github.ref_name == 'main')
||
(
(needs.changes.outputs.go == 'true') ||
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
needs:
- changes
if: |
(github.event.type == 'PushEvent' && github.ref_name == 'main')
(github.event_name == 'push' && github.ref_name == 'main')
||
(
(needs.changes.outputs.go == 'true') ||
Expand Down

0 comments on commit 45dd8b1

Please sign in to comment.