generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
39 lines (39 loc) · 1.17 KB
/
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
34
35
36
37
38
39
name: 'Jira Development Integration'
description: 'Send Github Actions Build Information to Jira'
branding:
icon: 'check'
color: 'blue'
author: 'Rohit Gohri'
inputs:
jira_instance:
required: true
description: 'Sub Domain of Jira Cloud Instance'
client_id:
required: true
description: 'ClientID of OAuth Creds'
client_secret:
required: true
description: 'ClientSecret of OAuth Creds'
token:
required: false
default: ${{ github.token }}
description: 'Github Token to get commit message in Pull Request Events'
event_type:
required: false
description: '"build" or "deployment"'
environment:
required: false
description: 'Environment name'
environment_type:
required: false
description: 'We try to automatically parse from environment but if you want to override then provide one of [unmapped, development, testing, staging, production]'
state:
required: false
description: '"successful"/"success", "failed", or "canceled"'
default: successful
issue:
required: false
description: Will be parsed from branch name automatically if not provided.
runs:
using: 'node16'
main: 'dist/github/index.js'