-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (30 loc) · 830 Bytes
/
action.yml
File metadata and controls
31 lines (30 loc) · 830 Bytes
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
name: 'Jira bulk update issues'
description: 'Action to update a specified field for all found Jira issues'
branding:
icon: "cloud"
color: "purple"
inputs:
domain:
description: 'Domain name of the Jira cloud instance (e.g. your-domain.atlassian.net)'
required: true
username:
description: 'Jira Username'
required: true
password:
description: 'Jira Personal Access Token'
required: true
jql:
description: 'The JQL query to identify the issues to update'
required: true
fieldName:
description: 'The name of the field to update (careful with custom fields)'
required: true
fieldValue:
description: 'The value to set the field to'
required: true
appendValue:
description: 'Whether to append or not'
required: false
runs:
using: 'node20'
main: 'index.js'