# What this PR does Add [`yamllint`](https://github.com/adrienverge/yamllint) to `pre-commit` configuration + fix pre-existing errors ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
23 lines
576 B
YAML
23 lines
576 B
YAML
name: Verify CHANGELOG updated
|
|
|
|
"on":
|
|
pull_request:
|
|
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
verfiy-changelog-updated:
|
|
name: Verify CHANGELOG updated
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Changelog check
|
|
uses: Zomzog/changelog-checker@v1.3.0
|
|
with:
|
|
fileName: CHANGELOG.md
|
|
noChangelogLabel: pr:no changelog
|
|
checkNotification: Simple
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|