Skip to content

Commit

Permalink
ipam: Reduce git actions noise (#1875)
Browse files Browse the repository at this point in the history
When kubevirt-bot creates PRs, it will trigger the IPAM lane twice, because both
`push` and `pull_request` events occur (the bot creates a branch on main,
hence push event happens).
The IPAM lane also runs after a PR is merged, because it triggers `push`.
In order to reduce this noise, lets remove the `push` event.
The `pull_request` is enough as long as PRs are used
(and not direct pushes which aren't encouraged anyhow).

Signed-off-by: Or Shoval <[email protected]>
  • Loading branch information
oshoval authored Aug 21, 2024
1 parent 234d664 commit 6f00bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kubevirt-ipam-controller.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Kubevirt IPAM controller Tests
on: [push, pull_request]
on: [pull_request]
jobs:
e2e:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6f00bc0

Please sign in to comment.