Skip to content

Move to mkdocs

Move to mkdocs #2036

---
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