Browse Source

Merge pull request #124 from rust-embedded/check-changelog

Check CHANGELOG.md on PRs to master
Román Cárdenas Rodríguez 1 year ago
parent
commit
cc4f035e7d

+ 20 - 0
riscv-rt/.github/workflows/changelog.yaml

@@ -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.'
+

+ 18 - 0
riscv-rt/.github/workflows/label.yaml

@@ -0,0 +1,18 @@
+name: Check Labels
+
+on:
+  merge_group:
+  pull_request:
+    types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
+
+jobs:
+  label-check:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: mheap/github-action-required-labels@v5
+        with:
+          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 }}."

+ 2 - 0
riscv-rt/CHANGELOG.md

@@ -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