forked from kagof/trello-link-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
30 lines (30 loc) · 1 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
name: 'Trello Link GitHub Action'
description: 'automatically link commits, branches, and pull requests to Trello cards'
branding:
icon: 'link'
color: 'purple'
inputs:
board-identifier:
description: |
Allowed to be one of the following:
1. the board name
2. the board shortLink (can be found in the URL)
3. the boardId (can be found via the Trello REST API)
This field is required if allow-missing-board is false.
required: true
marker:
description: |
When preceding a string in a commit message or PR body or title,
indicates that the string is a Trello card identifier.
May be either:
1. an alpha string, eg TRELLO
2. an alpha string followed by a dash, eg TRELLO-
3. one of the characters ! @ # $ % ^ & * + = (note: must be exactly 1 char long)
required: false
default: 'TRELLO-'
trello-token:
description: 'Secret token used to contact Trello'
required: true
runs:
using: 'node12'
main: 'dist/index.js'