Skip to content

Commit

Permalink
Add MoSCoW prioritization action (#6)
Browse files Browse the repository at this point in the history
Signed-off-by: David Greven <opensource@grevend.dev>
  • Loading branch information
grevend authored Sep 13, 2022
1 parent 8822fa9 commit e2ee2a1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/moscow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: MoSCoW Prioritization

on:
pull_request_target:
types: [ labeled, opened, unlabeled, reopened ]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

permissions:
contents: read
issues: write
pull-requests: write

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: grevend/moscow-prioritization@v1.1.0
with:
token: '${{ secrets.GITHUB_TOKEN }}'

0 comments on commit e2ee2a1

Please sign in to comment.