mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
25 lines
655 B
YAML
25 lines
655 B
YAML
name: Enforce Changelog Update
|
|
on:
|
|
pull_request:
|
|
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
|
branches:
|
|
- main
|
|
- develop
|
|
jobs:
|
|
build:
|
|
name: Check Actions
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup node version
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
- uses: actions/checkout@v2
|
|
- name: Changelog check
|
|
uses: Zomzog/changelog-checker@v1.2.0
|
|
with:
|
|
fileName: CHANGELOG.md
|
|
noChangelogLabel: no changelog
|
|
checkNotification: Simple
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|