Skip to content

Commit

Permalink
Update pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Norton-Lin authored Sep 17, 2024
1 parent a5bece5 commit 13972a6
Showing 1 changed file with 7 additions and 20 deletions.
27 changes: 7 additions & 20 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Pull Request Checker
on:
pull_request:
branches:
- main
name: Commitlint

permissions:
pull-requests: read
on: [pull_request]

jobs:
commitlint:
Expand All @@ -14,17 +9,9 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '16' # 更新 Node.js 版本到 16
- run: npm install
- run: |
npm install --save-dev @commitlint/config-angular @commitlint/cli
echo "module.exports = {extends: ['@commitlint/config-angular']};" > commitlint.config.js
- run: npx commitlint --from=HEAD~1 --to=HEAD --verbose
- name: Check if the PR close an issue in PR body
run: |
if ! echo "${{ github.event.pull_request.body }}" | grep -q "close" ; then
echo "No issue closed in the PR body. Please add a line like 'close #123' to the PR body."
exit 1
fi
node-version: '16'
- run: npm install -g @commitlint/cli @commitlint/config-conventional
- run: echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
- run: commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose

0 comments on commit 13972a6

Please sign in to comment.