Skip to content

[pre-commit.ci] pre-commit autoupdate #98

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #98

Workflow file for this run

name: Check
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
jobs:
check-changelog-entry:
name: changelog entry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# `towncrier check` runs `git diff --name-only origin/main...`, which
# needs a non-shallow clone.
fetch-depth: 0
- name: Check changelog
if: "!contains(github.event.pull_request.labels.*.name, 'Skip Changelog')"
run: |
if ! pipx run towncrier check --compare-with origin/${{ github.base_ref }}; then
echo "Please see https://landlab.readthedocs.io/en/master/development/contribution/index.html?highlight=towncrier#news-entries for guidance."
false
fi