Create immediate mode for Editor prompt #373
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CHANGELOG Check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled, edited] | |
env: | |
CHANGELOG_REQUIRED: true | |
IGNORE_CHECK_LABEL: allow-no-changelog | |
jobs: | |
changelog-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Override variable if PR is labeled ${{ env.IGNORE_CHECK_LABEL }} | |
if: ${{ contains(github.event.pull_request.labels.*.name, env.IGNORE_CHECK_LABEL) }} | |
run: | | |
echo "CHANGELOG_REQUIRED=false" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
if: fromJSON(env.CHANGELOG_REQUIRED) | |
- name: Get changed files in the docs folder | |
if: fromJSON(env.CHANGELOG_REQUIRED) | |
id: changelog-changed | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: CHANGELOG.md | |
- name: Fail workflow if CHANGELOG.md has not been changed | |
if: fromJSON(env.CHANGELOG_REQUIRED) && steps.changelog-changed.outputs.any_changed == 'false' | |
run: | | |
echo "CHANGELOG.md has not been changed" | |
exit 1 |