Generate bindings for IEEE802.15.4 radio on ESP32-C6/H2 #55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Change log 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@v3 | |
- uses: dangoslen/changelog-enforcer@v3 | |
with: | |
changeLogPath: CHANGELOG.md | |
skipLabels: "skip-changelog" | |
missingUpdateErrorMessage: "Please add a changelog entry in the CHANGELOG.md file." |