Skip to content

Commit

Permalink
Merge pull request #4634 from kranurag7/kr/add-pr-verify
Browse files Browse the repository at this point in the history
🌱 Add verifier action for pull requests
  • Loading branch information
k8s-ci-robot authored Nov 22, 2023
2 parents a5928a0 + 8c39970 commit 1138690
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Fixes #

- [ ] squashed commits
- [ ] includes documentation
- [ ] includes [emojis](https://github.com/kubernetes-sigs/kubebuilder-release-tools?tab=readme-ov-file#kubebuilder-project-versioning)
- [ ] adds unit tests
- [ ] adds or updates e2e tests

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: PR verify

on:
pull_request_target:
types: [opened, edited, synchronize, reopened]

jobs:
verify:
runs-on: ubuntu-latest
name: verify PR contents
steps:
- name: Verifier action
id: verifier
uses: kubernetes-sigs/kubebuilder-release-tools@3c3411345eedc489d1022288aa844691e92a9c29 # tag=v0.4.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1138690

Please sign in to comment.