-
Notifications
You must be signed in to change notification settings - Fork 5
24 lines (22 loc) · 840 Bytes
/
pr-verify.yml
File metadata and controls
24 lines (22 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Verify Pull Request
on: # yamllint disable-line rule:truthy
pull_request_target:
types: [opened, edited, synchronize, reopened, ready_for_review]
# yamllint disable rule:line-length
jobs:
pr-verify:
runs-on: ubuntu-latest
name: Verify Pull Request
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
steps:
- name: Verifier action
id: verifier
uses: kubernetes-sigs/kubebuilder-release-tools@012269a88fa4c034a0acf1ba84c26b195c0dbab4 # v0.4.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Verify Shellcheck
run: make verify-shellcheck