Skip to content

v3.0.0 Release

v3.0.0 Release #30

Workflow file for this run

name: Update changelog on Releases
on:
pull_request:
types:
- opened
- reopened
- labeled
- unlabeled
- edited
- synchronize
branches:
- stable
jobs:
changelog-updated:
runs-on: ubuntu-latest
if: "!contains(github.event.pull_request.labels.*.name, 'skip-release')"
steps:
- uses: actions/checkout@v1
- name: Changelog check
uses: Zomzog/[email protected]
with:
fileName: CHANGELOG.md
checkNotification: Simple # Default 'Detailed' doesn't work with forks
# noChangelogLabel: skip-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}