-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (36 loc) · 1.09 KB
/
action.yml
File metadata and controls
40 lines (36 loc) · 1.09 KB
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 Sync'
description: 'Automatically sync GitHub PR states to Asana task custom fields'
author: 'Planning Center'
branding:
icon: 'check-circle'
color: 'purple'
inputs:
asana_token:
description: 'Asana Personal Access Token'
required: true
github_token:
description: 'GitHub token (use secrets.GITHUB_TOKEN)'
required: true
rules:
description: 'YAML rules configuration for PR event automation'
required: true
user_mappings:
description: 'JSON object mapping GitHub usernames to Asana user GIDs (optional)'
required: false
integration_secret:
description: 'Asana-GitHub integration secret for rich PR attachments (optional)'
required: false
dry_run:
description: 'Enable dry-run mode (logs actions without executing them)'
required: false
default: 'false'
outputs:
task_ids:
description: 'Comma-separated list of task IDs found in PR (or created)'
field_updates:
description: 'Number of field updates applied'
tasks_created:
description: 'Number of tasks created'
runs:
using: 'node24'
main: 'dist/index.js'