We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f11f0d commit bcd993dCopy full SHA for bcd993d
.github/workflows/release_notes_check.yml
@@ -0,0 +1,25 @@
1
+name: Release Notes Check
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ # On by default if you specify no types.
7
+ - "opened"
8
+ - "reopened"
9
+ - "synchronize"
10
+ # For `skip-label` only.
11
+ - "labeled"
12
+ - "unlabeled"
13
14
+jobs:
15
+ check-release-notes:
16
+ name: Check release notes are updated
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Check for a release notes update
20
+ uses: brettcannon/check-for-changed-files@294a99714e0d350b5083472a293d41bc91804e68 # v1.1.1
21
+ with:
22
+ file-pattern: "RELEASE_NOTES.md"
23
+ prereq-pattern: "src/**"
24
+ skip-label: "cmd:skip-release-notes"
25
+ failure-message: "Missing a release notes update. Please add one or apply the ${skip-label} label to the pull request"
0 commit comments