mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
24 lines
512 B
YAML
24 lines
512 B
YAML
name: Changelog Check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Check Actions
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Changelog check
|
|
uses: Zomzog/changelog-checker@v1.3.0
|
|
with:
|
|
fileName: CHANGELOG.md
|
|
noChangelogLabel: skip changelog
|
|
checkNotification: Simple
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|