forked from insurify/github-asana-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
25 lines (25 loc) · 852 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: 'Asana Git'
description: 'Asana Github Actions'
inputs:
asana-pat:
description: 'Asana Public Access Token.'
required: true
task-comment:
description: 'Provide text, which will add a comment with the pull request link to the asana task.'
required: false
targets:
description: 'JSON array of objects having project and section where to move current task. Move task only if it exists in target project.'
required: false
trigger-phrase:
description: 'Prefix before the task e.g. "closes" would match "closes: https://app.asana.com/1/2/3". Must match /^[A-Za-z_]+$/'
required: false
mark-completed:
description: 'Set this to "true" to mark the task as completed'
required: false
default: 'false'
branding:
icon: 'chevron-right'
color: 'gray-dark'
runs:
using: 'node12'
main: 'index.js'