-
Notifications
You must be signed in to change notification settings - Fork 24
40 lines (35 loc) · 1.24 KB
/
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
31
32
33
34
35
36
37
38
39
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: '14'
- run: npm install
- run: |
npm install --save-dev @commitlint/config-angular @commitlint/cli
echo "module.exports = {extends: ['@commitlint/config-angular']};" > commitlint.config.js
# Run the commitlint action, considering its own dependencies and yours as well 🚀
# `github.workspace` is the path to your repository.
- uses: wagoid/commitlint-github-action@v5
env:
NODE_PATH: ${{ github.workspace }}/node_modules
with:
helpURL: 'https://github.com/FrogDar/code-contributing-practice/blob/main/CONTRIBUTING.md'
# check if the PR close an issue in PR body
- 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