Allow unmaintained paste crate #2317
Workflow file for this run
This file contains hidden or 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] | |
| jobs: | |
| changelog-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 2 # Only need preceeding commit | |
| - name: Check for no-changelog label | |
| id: label-check | |
| uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
| with: | |
| script: | | |
| const payload = context.payload; | |
| const label = !!payload.pull_request.labels.find(l => l.name === 'no-changelog'); | |
| core.setOutput('has_label', label.toString()); | |
| - name: Check if CHANGELOG.md was modified | |
| id: changelog-check | |
| if: steps.label-check.outputs.has_label == 'false' | |
| uses: tj-actions/changed-files@dcc7a0cba800f454d79fff4b993e8c3555bcc0a8 # v45.0.7 | |
| with: | |
| files: | | |
| CHANGELOG.md | |
| - name: Assert CHANGELOG.md is modified | |
| uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
| if: steps.label-check.outputs.has_label == 'false' && steps.changelog-check.outputs.any_changed != 'true' | |
| with: | |
| script: | | |
| core.setFailed("No changes to CHANGELOG.md detected. Add 'no-changelog' label if this is intentional.") | |