summaryrefslogtreecommitdiffstats
path: root/.github/workflows/require-release-note.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/require-release-note.yml')
-rw-r--r--.github/workflows/require-release-note.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/require-release-note.yml b/.github/workflows/require-release-note.yml
new file mode 100644
index 0000000..611fb5a
--- /dev/null
+++ b/.github/workflows/require-release-note.yml
@@ -0,0 +1,27 @@
+# Maintained in https://github.com/coreos/repo-templates
+# Do not edit downstream.
+
+name: Release notes
+
+on:
+ pull_request:
+ branches: [main]
+ types: [opened, synchronize, reopened, labeled, unlabeled]
+
+permissions:
+ contents: read
+
+concurrency:
+ group: release-note-${{ github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ require-notes:
+ name: Require release note
+ runs-on: ubuntu-latest
+ steps:
+ - name: Require release-notes.md update
+ uses: coreos/actions-lib/require-file-change@main
+ with:
+ path: docs/release-notes.md
+ override-label: skip-notes