Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/code-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
run: bun install --frozen-lockfile
- name: Validate commit messages
if: github.event_name == 'pull_request'
run: echo "${{ github.event.pull_request.title }}" | bun run commitlint
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "$PR_TITLE" | bun run commitlint
- name: Validate
id: validate
run: bun run validate
Expand Down
Loading