-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.05 KB
/
changelog-entry-reminder.yml
File metadata and controls
38 lines (35 loc) · 1.05 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Changelog Reminder
on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
- main
jobs:
build:
name: Check Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41.0.0
with:
files_ignore: |
**/*.md
**/*_test.go
tests/**
**/*.py
.github/workflows/*.yml
- name: Changelog check
# Skip this step and return success result for markdown only changes
if: |
steps.changed-files.outputs.any_changed == 'true' ||
steps.changed-files.outputs.any_deleted == 'true' ||
steps.changed-files.outputs.any_modified == 'true'
uses: Zomzog/changelog-checker@v1.3.0
with:
fileName: CHANGELOG.md
noChangelogLabel: A:no-changelog
checkNotification: Simple
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}