Skip to content

Commit 0f6b74f

Browse files
authored
ci: store pr title before usage (#1344)
1 parent 1e55e32 commit 0f6b74f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/commitlint.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,19 @@ jobs:
2222
- name: Install deps
2323
run: npm ci --ignore-scripts
2424
- name: Verify PR title is in the correct format
25+
env:
26+
TITLE: ${{ github.event.pull_request.title }}
2527
run: |
26-
echo "${{ github.event.pull_request.title }}" | npx commitlint -V
28+
echo $TITLE | npx commitlint -V
2729
2830
needs-migration-docs-check:
2931
runs-on: ubuntu-latest
3032
steps:
3133
- name: Echo event name
32-
run: echo "${{ github.event_name }}:${{ github.event.pull_request.title }}"
34+
env:
35+
TITLE: ${{ github.event.pull_request.title }}
36+
EVENT: ${{ github.event_name }}
37+
run: echo "$EVENT:$TITLE"
3338

3439
- name: Check PR name for breaking changes
3540
if: github.event_name == 'pull_request' && ( contains(github.event.pull_request.title, '!') || contains(github.event.pull_request.title, 'BREAKING CHANGE') )

0 commit comments

Comments
 (0)