forked from rematocorp/trello-integration-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 966 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
author: Remato
name: trello-integration
description: GitHub Action to integrate Github pull requests with Trello cards
branding:
color: yellow
icon: anchor
inputs:
github-token:
description: Github token, https://docs.github.com/en/actions/reference/authentication-in-a-workflow
required: true
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-list-id-pr-open:
description: Trello list ID for open pull request, visit a board then append .json to url to find id
required: false
trello-list-id-pr-closed:
description: Trello list ID for closed pull request, visit a board then append .json to url to find id
required: false
runs:
using: node12
main: 'dist/index.js'