-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
40 lines (39 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: 'Github -> Asana Integrations'
description: 'Common integrations between Github and Asana'
inputs:
action:
description: 'Action that will be executed. `create-task` to create a task based on the ISSUE'
required: true
github-pat:
description: 'Github Public Access Token.'
required: false
asana-pat:
description: 'Asana Public Access Token.'
required: false
asana-project:
description: 'Asana Project Id where the Task will be added.'
required: false
asana-section:
description: 'The Section of the Project where the Task will be added to'
required: false
asana-task-name:
description: 'Name of the Asana task you want to create.'
required: false
asana-task-description:
description: 'Description of the Asana task you want to create.'
required: false
asana-tag:
description: 'Tag to be added to the Asana task.'
required: false
trigger-phrase:
description: 'Prefix used to identify Asana tasks (URL).'
required: false
github-repository:
description: 'Github Repository to check for the latest release.'
required: false
github-org:
description: 'Github Organisation where the repository is hosted, to check for the latest release.'
required: false
runs:
using: 'node20'
main: 'index.js'