You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
MoSCoW Pull Request Prioritization
v1.1.0
MoSCoW prioritization action to manage label-based requirements prioritization
name: MoSCoW Prioritization
on:
pull_request_target:
types: [labeled, opened, unlabeled, reopened]
permissions:
contents: read
issues: write
pull-requests: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: grevend/[email protected]
with:
token: "${{ secrets.GITHUB_TOKEN }}"
Note: This action requires access to the GITHUB_TOKEN
to call GitHub's REST API
Input | Description | Default |
---|---|---|
token | The workflows GITHUB_TOKEN secret |
|
wont-have-label | Label to expect on low-priority PRs | wont have |
could-have-label | Label to expect on PRs of little relevance | could have |
should-have-label | Label to expect on non-critical PRs | should have |
must-have-label | Label to expect on essential PRs | must have |