forked from alex-page/github-project-automation-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 loc) · 757 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: 'GitHub Project Automation+'
description: '🤖 Automate GitHub Project cards with any webhook event'
author: 'Alex Page <[email protected]>'
inputs:
repo-token:
description: 'The GH_TOKEN secret can be passed in using {{ secrets.GH_TOKEN }}'
required: true
project:
description: 'The name of the GitHub Project'
required: true
column:
description: 'The name of the column to move the issue or pull request to'
required: true
action:
description: |
Can be `update`, `delete` or `archive` or `add`. This determines the type of the action
to be performed on the card
required: false
default: "update"
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'cpu'
color: 'gray-dark'