forked from dalezak/github-commit-to-trello-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (35 loc) · 1.32 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
35
author: Dale Zak
name: github-commit-to-trello-card
description: GitHub Action to attach GitHub commits and pull requests to a Trello card
branding:
icon: 'check-square'
color: 'gray-dark'
inputs:
trello-api-key:
description: Trello API key, visit https://trello.com/app-key for key
required: true
trello-auth-token:
description: Trello auth token, visit https://trello.com/app-key then click generate a token
required: true
trello-board-id:
description: Trello board ID, visit a board then append .json to url to find id
required: true
trello-card-action:
description: Trello card action, either "Comment" or "Attachment"
required: true
trello-list-name-commit:
description: Trello list name for new commit, for example "Doing", "In Progress", etc
required: false
trello-list-name-pr-open:
description: Trello list name for open pull request, for example "Reviewing", "In Review", etc
required: false
trello-list-name-pr-closed:
description: Trello list name for closed pull request, for example "Testing", "Done", etc
required: false
key-prefix:
description: Prefix before Trello card IDs, for example "PROJ-", if you want to refer to cards like "PROJ-242" rather than "#242". Default is "#"
required: false
default: '#'
runs:
using: node12
main: dist/index.js