-
Notifications
You must be signed in to change notification settings - Fork 5
30 lines (28 loc) · 921 Bytes
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Pull Request Checker
on:
pull_request:
branches:
- main
permissions:
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
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