Skip to content

Commit 3b6e0e1

Browse files
authored
ci: fix pr title check (#1965)
1 parent d67e893 commit 3b6e0e1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pull_request_title.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,8 @@ jobs:
1717
check-latest: true
1818
cache: 'pnpm'
1919
- run: pnpm install
20-
- run: echo '${{ github.event.pull_request.title }}' | pnpm commitlint
20+
- name: Check PR title
21+
env:
22+
TITLE: ${{ github.event.pull_request.title }}
23+
run: echo "$TITLE" | pnpm commitlint
24+

0 commit comments

Comments
 (0)