-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
34 lines (34 loc) · 1.03 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
name: "Move to next iteration"
description: "Automatically move issues to the next iteration."
author: "Baptiste Lombard"
branding:
icon: "calendar"
color: "blue"
inputs:
owner:
description: The account name of the GitHub organization.
required: true
number:
description: Project number as you see it in the URL of the project.
required: true
token:
description: Personal access token or an OAuth token. the write:org scope is required for read-write access.
required: true
iteration-field:
description: The name of your iteration field.
required: true
iteration:
description: Should be last or current.
required: true
new-iteration:
description: Should be current or next.
required: true
statuses:
description: Statuses of the issues to move to the next iteration.
required: false
excluded-statuses:
description: Statuses of the issues that should not be moved. This setting takes precedence over statuses.
required: false
runs:
using: "node20"
main: "dist/index.js"