forked from ks-keshava-rao/Jira-description
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yaml
30 lines (30 loc) · 788 Bytes
/
action.yaml
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
name: 'Jira description to prs body'
description: 'Add jira description to Pull request'
branding:
icon: "check-circle"
color: "purple"
inputs:
token:
description: "Github access token"
required: true
orgUrl:
description: "organization's jira url"
required: true
jiraToken:
description: "Jira token"
required: true
jiraUsername:
description: "Jira username"
required: true
addIdToTitle:
description: "Adds Jira Id to title with format `[ID] - `"
required: false
skipLabel:
description: "Use this to avoid the action to fail if JiraId is not included in the PR"
required: false
failWhenNoId:
description: "Set if action is to fail when id is missing"
required: false
runs:
using: 'node20'
main: 'dist/index.js'