-
-
Notifications
You must be signed in to change notification settings - Fork 93
44 lines (35 loc) · 1.3 KB
/
fragments-check.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
name: Fragments check
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
branches:
- master
jobs:
check-fragment-added:
if: github.event.pull_request.user.type != 'Bot' && !contains(github.event.pull_request.labels.*.name, 'skip-fragment-check')
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# `towncrier check` runs `git diff --name-only origin/main...`, which
# needs a non-shallow clone.
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Check if changelog fragment was added
run: |
pip install -r dev-requirements/towncrier.txt
if ! towncrier check --compare-with origin/${{ github.base_ref }}; then
exit 1
fi
- name: Check if linked to the correct pull request
run: |
diff=$(git diff origin/${{ github.base_ref }} HEAD --name-only)
changelog_fragments=$(echo "$diff" | grep "^changes/")
valid_changelog_fragments=$(echo "$diff" | grep "^changes/${{ github.event.number }}\.")
if [ "$changelog_fragments" != "$valid_changelog_fragments" ]; then
exit 1
fi