Rework the adapter-making decorator #43
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 label | |
| "on": | |
| pull_request: | |
| types: [opened, reopened, synchronize, labeled, unlabeled] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| changelog-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mheap/github-action-required-labels@v5 | |
| with: | |
| mode: exactly | |
| count: 1 | |
| labels: breaking, feature, fix, internal | |
| message: "Label this PR with exactly one of: `breaking`, `feature`, `fix`, `internal` (see CONTRIBUTING.md). Release notes are generated from these labels; use `internal` for changes that should not appear in them." |