-
Notifications
You must be signed in to change notification settings - Fork 23
/
action.yml
27 lines (27 loc) · 1.18 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
name: 'Move labeled or milestoned issue to a specific project column'
description: 'Move an newly created issue or existing issue that has been labeled or milestoned to a specific column in a project'
branding:
icon: 'move'
color: 'yellow'
inputs:
action-token:
description: 'Token for the repo. The usual secrets.GITHUB_TOKEN will not be sufficient, you must create a token that has repo permissions'
required: true
project-url:
description: 'The url of the project'
required: true
column-name:
description: 'The column that the card should end up'
required: true
label-name:
description: 'The label that specifies if an issue should be automatically moved to the column (mutually exclusive with milestone-name)'
required: false
milestone-name:
description: 'The milestone that specifies if an issue should be automatically moved to the column (mutually exclusive with label-name)'
required: false
columns-to-ignore:
description: 'Comma separated list of columns to ignore. If a card/issue is already in one of these columns, it will not be moved. Use `*` to ignore all columns'
required: false
runs:
using: 'node12'
main: 'index.js'