Skip to content

Commit

Permalink
Add changelog check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rosteen committed Oct 3, 2024
1 parent 07c1883 commit 4705ece
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Changelog check

on:
pull_request:
types: [labeled, unlabeled, opened, synchronize, reopened]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
changelog:
name: Check changelog entry
runs-on: ubuntu-latest
steps:
- name: Check change log entry
uses: scientific-python/action-check-changelogfile@1fc669db9618167166d5a16c10282044f51805c0 # 0.3
env:
CHANGELOG_FILENAME: CHANGES.rst
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHECK_MILESTONE: false

0 comments on commit 4705ece

Please sign in to comment.