-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (33 loc) · 1.16 KB
/
changelog-fragment.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: Changelog Fragment present
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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 poetry
uses: ItsDrike/setup-poetry@v1
with:
python-version: 3.11
install-args: "--no-root --only release"
- name: Check if changelog fragment was added
run: |
if ! towncrier check --compare-with origin/${{ github.base_ref }}; then
echo "----------------------------------------------------"
echo "Please refer to CONTRIBUTING.md/#Changelog and changes/README.md for more information"
exit 1
fi