Skip to content

Commit 1138690

Browse files
authored
Merge pull request #4634 from kranurag7/kr/add-pr-verify
🌱 Add verifier action for pull requests
2 parents a5928a0 + 8c39970 commit 1138690

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Fixes #
3232

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

.github/workflows/pr-verify.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: PR verify
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, edited, synchronize, reopened]
6+
7+
jobs:
8+
verify:
9+
runs-on: ubuntu-latest
10+
name: verify PR contents
11+
steps:
12+
- name: Verifier action
13+
id: verifier
14+
uses: kubernetes-sigs/kubebuilder-release-tools@3c3411345eedc489d1022288aa844691e92a9c29 # tag=v0.4.2
15+
with:
16+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)