-
-
Notifications
You must be signed in to change notification settings - Fork 781
25 lines (23 loc) · 700 Bytes
/
checks.yaml
File metadata and controls
25 lines (23 loc) · 700 Bytes
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
name: Checks
on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
- master
- v[0-9]+.[0-9]+
jobs:
# Changelog checker will verify if CHANGELOG.rst was updated for every PR
# See: https://keepachangelog.com/en/1.0.0/
changelog-checker:
name: Add CHANGELOG.rst
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Changelog check
# https://github.com/marketplace/actions/changelog-checker
uses: Zomzog/changelog-checker@v1.2.0
with:
fileName: CHANGELOG.rst
checkNotification: Simple
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}