generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
34 lines (31 loc) · 878 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
26
27
28
29
30
31
32
33
34
name: 'Create Asana Task'
author: 'Honeycomb'
description: 'Trigger task creation in Asana from Github'
inputs:
asana-secret:
description: 'Asana PAT'
required: true
asana-workspace-id:
description: 'Your Asana Workspace ID'
required: true
asana-project-id:
description: 'Your Asana Project ID'
required: true
asana-section-id:
description: 'Your Asana Section ID (column the task should belong to)'
required: true
asana-task-name:
description: 'Name for Asana task'
required: true
asana-task-description:
description: 'Description for Asana task'
required: false
asana-due-date:
description: 'Date on which Asana task is due (YYYY-MM-DD)'
required: false
asana-tags:
description: 'List of tag IDs to associate with Asana task'
required: false
runs:
using: 'node16'
main: 'dist/index.js'