forked from everphone-gmbh/github-asana-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
40 lines (40 loc) · 1.28 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
36
37
38
39
40
name: 'Asana Github Actions'
description: 'Asana Github Actions'
inputs:
asana-pat:
description: 'Asana Public Access Token.'
required: true
action:
description: 'The action to be performed assert-link|add-comment|remove-comment|move-section|complete-task'
required: false
trigger-phrase:
description: 'Prefix before the task i.e ASANA TASK: https://app.asana.com/1/2/3'
required: false
github-token:
description: 'your github auth token'
required: false
comment-id:
description: 'an (optional) unique comment id to avoid duplicate comments'
required: false
text:
description: 'Provide text, which will add a comment with the pull request link to the asana task.'
required: false
is-pinned:
description: 'Should the asana comment be pinned'
required: false
default: 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
link-required:
description: 'When set to true will fail pull requests without an asana link'
required: false
is-complete:
description: 'Is the task complete'
required: false
branding:
icon: 'chevron-right'
color: 'gray-dark'
runs:
using: 'node16'
main: 'index.js'