-
Notifications
You must be signed in to change notification settings - Fork 19
/
action.yml
21 lines (20 loc) · 933 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'Jira Extract Issue Keys'
description: 'Github Action to extract jira keys from commit messages and output in comma delimited format.'
inputs:
is-pull-request:
description: 'if true, other input parameters will be ignored and keys from commits associated with pull request will be retrieved and parsed for Jira keys'
required: false
default: false
parse-all-commits:
description: 'All commits will be parsed. By default only the head commit is parsed when commit-message input value is not provided'
required: false
default: false
commit-message:
description: 'commit message to be parsed for jira keys. Note that if this input is not provided, the commits found in github.context.payload will be used'
required: false
outputs:
jira-keys:
description: 'Jira keys that were found in input string(commit-message) in commad delimited format'
runs:
using: 'node12'
main: 'index.js'