Skip to content

Commit 034c81c

Browse files
authored
Merge pull request #1067 from chrischdi/pr-fix-pr-verify-title
🌱 pr-verify: use env var for passing the PR title
2 parents f79cfef + 280b7ac commit 034c81c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/verify.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7
13-
14-
- name: Check if PR title is valid
15-
run: |
16-
./hack/verify-pr-title.sh "${{ github.event.pull_request.title }}"
12+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7
1713

14+
- name: Check if PR title is valid
15+
env:
16+
PR_TITLE: ${{ github.event.pull_request.title }}
17+
run: |
18+
./hack/verify-pr-title.sh "${PR_TITLE}"

0 commit comments

Comments
 (0)