townsquare/.github/workflows/changelog-check.yml

22 lines
543 B
YAML
Raw Normal View History

2021-03-17 19:45:19 +00:00
name: Enforce Changelog Update
on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
- main
2021-05-09 19:43:51 +00:00
- develop
2021-03-17 19:45:19 +00:00
jobs:
build:
name: Check Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Changelog check
2021-03-23 08:14:57 +00:00
uses: Zomzog/changelog-checker@v1.2.0
2021-03-17 19:45:19 +00:00
with:
fileName: CHANGELOG.md
noChangelogLabel: no changelog
2021-03-23 08:14:57 +00:00
checkNotification: Simple
2021-03-17 19:45:19 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}