generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (33 loc) · 1.04 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
name: "Asana Sync"
description: "Sync Github PRs to Asana Tasks"
author: "Sam Macbeth"
inputs:
ASANA_ACCESS_TOKEN:
required: true
description: "Access token for Asana API calls"
ASANA_WORKSPACE_ID:
required: true
description: "ID of your Asana workspace"
ASANA_PROJECT_ID:
required: true
description: "Project ID where issues should be created in Asana"
move_to_section_id:
required: false
description: "If set: move the task to this section after creation"
USER_MAP:
required: false
description: "JSON string mapping Github user IDs to Asana Email addresses"
SKIPPED_USERS:
required: false
description: "Comma separated list of users who should not be assigned tasks"
NO_AUTOCLOSE_PROJECTS:
required: false
description: "Comma separated list of project GIDs where we should not automatically close tasks"
outputs:
task_url:
description: URL of created/updated PR review task
result:
description: "Will be one of: created, updated"
runs:
using: "node20"
main: "dist/index.js"