Skip to content

Commit af95b12

Browse files
committed
CI: adding changelog checking GHA
1 parent 97efa55 commit af95b12

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/changelog.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Changelog check
2+
3+
on:
4+
pull_request:
5+
types: [labeled, unlabeled, opened, synchronize, reopened]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
changelog:
13+
name: Check changelog entry
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Check change log entry
17+
uses: scientific-python/action-check-changelogfile@865ff8154dd94f008f08de6bb8d8c1f661113658
18+
env:
19+
CHANGELOG_FILENAME: CHANGES.rst
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)