forked from angular-schule/ngx-deploy-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 15
56 lines (46 loc) · 1.62 KB
/
enforce-semantic-commits.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Enforce Semantic Commits
on:
pull_request:
types: [opened, edited, synchronize] #? reopened
jobs:
check-semantic-commits:
name: Check Semantic Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Fetch all commits for the PR
run: git fetch origin +refs/pull/${{ github.event.pull_request.number }}/merge
- name: Check commit messages
run: |
COMMIT_MESSAGES="$(git log --pretty=format:'%s' --abbrev-commit ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }})"
echo "$COMMIT_MESSAGES" | npx commitlint
# 'Check if the PR title is a valid semantic commit message'
check-pr-title:
name: Check PR Title
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Check PR Title
run: |
PR_TITLE='${{ github.event.pull_request.title }}'
echo "PR TITLE": '$PR_TITLE'
echo "$PR_TITLE" | npx commitlint
echo "::set-output name=pr_title::$PR_TITLE"
generate-changelog:
needs: [check-pr-title]
name: Generate Changelog #? should we comment in the PR?
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: Generate tmp branch
run: git checkout -b changelog
- name: Squash commits
run: |
git reset --soft `git merge-base main HEAD`
git commit -m "${{ steps.check-title.outputs.pr_title }}"
git log