forked from kin/gh-action-move-issues-to-column
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 loc) · 835 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
name: Move Issues to Column
description: Move given issues to a specified column
inputs:
access-token:
description: 'Token with permissions to access issue information in repo'
required: true
project-name:
description: 'Case insensitive string with the name of the Github Project'
required: true
target-column:
description: 'Case insensitive string with name of the column in the project issues should be moved to'
required: true
target-column-id:
description: 'Id of the column in the project issues should be moved to'
required: false
issues:
description: 'Optional arrray of issue event/webhook payloads as an alternative to using the trigger event payload'
required: false
default: '[]'
runs:
using: "node16"
main: "dist/index.js"
branding:
icon: 'move'
color: 'green'