-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
50 lines (48 loc) · 1.8 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
40
41
42
43
44
45
46
47
48
49
50
name: "Add Jira info to pull request"
description: "Automatically add Jira info to a pull request"
author: "Contractify"
inputs:
github-token:
description: "The GITHUB_TOKEN secret"
jira-username:
description: "Username used to access the Jira REST API. Must have read access to your Jira Projects & Issues."
jira-token:
description: "API Token used to access the Jira REST API. Must have read access to your Jira Projects & Issues."
required: true
jira-base-url:
description: 'The subdomain of JIRA cloud that you use to access it. Ex: "https://your-domain.atlassian.net"'
required: true
jira-project-key:
description: "Key of project in jira. First part of issue key"
required: true
default: ""
add-label-with-issue-type:
description: "If set to true, a label with the issue type from Jira will be added to the pull request"
default: "true"
required: false
issue-type-label-color:
description: "The hex color of the label to use for the issue type"
default: "FBCA04"
required: false
issue-type-label-description:
description: "The description of the label to use for the issue type"
default: "Jira Issue Type"
required: false
add-jira-key-to-title:
description: "If set to true, the title of the pull request will be prefixed with the Jira issue key"
default: "true"
required: false
add-jira-key-to-body:
description: "If set to true, the body of the pull request will be suffix with a link to the Jira issue"
default: "true"
required: false
add-jira-fix-versions-to-body:
description: "If set to `true`, the body of the pull request will be suffix with the `fixVersions` from to the Jira issue"
default: "true"
required: false
branding:
icon: tag
color: green
runs:
using: 'node20'
main: "dist/index.js"