Skip to content

Commit

Permalink
ci: Add changelog check
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Jun 12, 2024
1 parent 7b66012 commit a8501c2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Changelog check

on:
pull_request:
# Run on labeled/unlabeled in addition to defaults to detect
# adding/removing skip-changelog labels.
types: [opened, reopened, labeled, unlabeled, synchronize]

jobs:
changelog:
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v4

- uses: dangoslen/changelog-enforcer@v3
with:
changeLogPath: CHANGELOG.md
skipLabels: "skip-changelog"
missingUpdateErrorMessage: "Please add a changelog entry in the CHANGELOG.md file."
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Update LLVM version to `esp-17.0.1_20240419` (#427)
- Update dependencies
- Update dependencies (#429)

## [0.11.0] - 2024-02-02

Expand Down

0 comments on commit a8501c2

Please sign in to comment.