-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
63 lines (63 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Jira Issue Updater
description: Updates several properties of a Jira issue
author: frieder
branding:
icon: edit
color: black
inputs:
retries:
description: The number of retries to connect to the Jira API before considered failed.
required: false
default: 1
retryDelay:
description: The time in seconds to wait in between connection attempts.
required: false
default: 10
timeout:
description: The time in milliseconds in which a request must finish or otherwise considered failed.
required: false
default: 2000
failOnError:
description: Should the action report back as failed when at least one issue cannot be updated.
type: boolean
required: false
default: true
issue:
description: The ID(s) of the Jira issue(s).
required: true
summary:
description: The title (summary) of the Jira ticket.
required: false
description:
description: The description of the Jira ticket.
required: false
assignee:
description: The user assigned to the ticket.
required: false
priority:
description: Define the priority of a ticket.
required: false
duedate:
description: Define the due date of a ticket.
required: false
resolution:
description: Define the resolution of the ticket.
required: false
components:
description: Define components to be added/removed/set to the ticket.
required: false
fixversions:
description: A list of fix versions to be added/removed/set to the ticket.
required: false
labels:
description: A list of labels to be added/removed/set to the ticket.
required: false
customfields:
description: A list of custom fields with their respective values.
required: false
customfieldsJson:
description: A list of custom fields with their respective values in JSON. Supports Atlassian Documents and multiple values.
required: false
runs:
using: node20
main: ./dist/index.js