-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
33 lines (30 loc) · 869 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: MoSCoW Pull Request Prioritization
description: 'MoSCoW Prioritization action to manage label-based requirements prioritization'
author: 'grevend'
branding:
icon: 'check-circle'
color: 'gray-dark'
inputs:
token:
description: 'The workflows GITHUB_TOKEN secret'
required: false
default: '${{ github.token }}'
wont-have-label:
description: 'Label to expect on low-priority PRs'
required: false
default: 'wont have'
could-have-label:
description: 'Label to expect on PRs of little relevance'
required: false
default: 'could have'
should-have-label:
description: 'Label to expect on non-critical PRs'
required: false
default: 'should have'
must-have-label:
description: 'Label to expect on essential PRs'
required: false
default: 'must have'
runs:
using: 'node16'
main: 'dist/index.js'