forked from RosemanLabs/gha-move-tickets-to-next-iteration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
28 lines (28 loc) · 836 Bytes
/
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
name: "Archive items from iteration"
description: "Automatically archive issues from last/current iteration."
author: "Tim van Mourik"
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
statuses:
description: Statuses of the issues to move to the next iteration.
required: true
runs:
using: "node20"
main: "dist/index.js"