forked from Asana/create-app-attachment-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 1.06 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
name: 'Attach pull request to Asana task'
description: 'Check the pull request description for specific Asana task URLs and add the pull request as an attachment to those tasks'
author: Asana
branding:
icon: circle
color: green
inputs:
asana-secret:
description: 'The Asana secret for the action. Read more about how to generate this secret at https://github.com/Asana/create-app-attachment-github-action#step-2-set-up-a-repository-secret-for-the-secret-token'
required: true
default: ''
allowed-projects:
description: 'List of allowed projects. The action will only add comments to tasks in these projects. Only one of allowed-projects or blocked-projects can be specified.'
required: false
default: ''
blocked-projects:
description: 'List of allowed projects. The action will not add comments to tasks or subtasks of tasks in any of these projects. Only one of allowed-projects or blocked-projects can be specified.'
required: false
default: ''
outputs:
status:
description: 'status'
runs:
using: 'node12'
main: 'dist/index.js'