Skip to content

Commit

Permalink
Merge pull request #6705 from sbueringer/pr-fix-disable-verify
Browse files Browse the repository at this point in the history
🐛 fix disable verify action for cherry-pick bot
  • Loading branch information
k8s-ci-robot committed Jun 23, 2022
2 parents ec6825b + 405261c commit 61827b2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
on:
pull_request_target:
types: [opened, edited, synchronize, reopened]
# Don't run this check on PRs created by the cherry-pick bot,
# as the PR description is too short, but otherwise the PRs are fine.
branches-ignore:
- k8s-infra-cherrypick-robot/**

jobs:
verify:
Expand All @@ -14,5 +10,8 @@ jobs:
- name: Verifier action
id: verifier
uses: kubernetes-sigs/kubebuilder-release-tools@v0.2.0
# Don't run this step on PRs created by the cherry-pick bot,
# as the PR description is too short, but otherwise the PRs are fine.
if: ${{ github.event.pull_request.head.repo.owner.login != 'k8s-infra-cherrypick-robot' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 61827b2

Please sign in to comment.