Check CHANGELOG.md on PRs to master
@@ -0,0 +1,20 @@
+name: Check CHANGELOG.md
+
+on:
+ merge_group:
+ pull_request:
+ types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
+jobs:
+ changelog-check:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Check for CHANGELOG.md
+ uses: dangoslen/changelog-enforcer@v3
+ with:
+ skipLabels: 'skip changelog'
+ missingUpdateErrorMessage: 'Please add a changelog entry in the CHANGELOG.md file.'
@@ -0,0 +1,18 @@
+name: Check Labels
+ label-check:
+ - uses: mheap/github-action-required-labels@v5
+ mode: exactly
+ count: 0
+ labels: "work in progress, do not merge"
+ add_comment: true
+ message: "This PR is being prevented from merging because it presents one of the blocking labels: {{ provided }}."
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
+- New GitHub workflow for checking invalid labels in PRs
+- New GitHub workflow for checking modifications on CHANGELOG.md
- New GitHub workflow for checking clippy lints in PRs
### Changed