mirror of https://github.com/bra1n/townsquare.git
20 lines
491 B
YAML
20 lines
491 B
YAML
|
name: Enforce Changelog Update
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
||
|
branches:
|
||
|
- main
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Check Actions
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Changelog check
|
||
|
uses: Zomzog/changelog-checker@v1.1.0
|
||
|
with:
|
||
|
fileName: CHANGELOG.md
|
||
|
noChangelogLabel: no changelog
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|