Skip to content

Commit b2bb166

Browse files
authored
Merge pull request #25 from duckduckgo/km/update-docs-actionyml
Update action.yml + README with missing inputs
2 parents 6ec9b34 + 078d9f1 commit b2bb166

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ This action integrates asana with github.
2727
- `create-asana-pr-task` to create a task in Asana based on the Github Pull Request
2828
- `get-latest-repo-release` to find the latest release version of a Github Repository
2929
- `create-asana-task` to create a task in Asana
30+
- `add-task-pr-description` to add the Asana Task URL to a PR description
3031
- `get-asana-user-id` to return the Asana User Id of a given Github actor
3132
- `find-asana-task-id` searches in the PR description for an Asana Task, given a prefix
33+
- `find-asana-task-ids` searches in the PR description for multiple Asana Tasks, given a prefix
3234
- `post-comment-asana-task` to post a comment in an Asana task
35+
- `send-mattermost-message` to send a message to a channel in Mattermost
3336
- `get-asana-task-permalink` to get the permalink for a given Asana Task ID
3437
- `mark-asana-task-complete` to mark an Asana task as complete or incomplete
3538

action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,18 @@ inputs:
3636
asana-collaborators:
3737
description: 'Comma-separated Asana user IDs or emails of users to be added as followers.'
3838
required: false
39+
asana-assignee:
40+
description: 'Asana ID of the user to whom the task should be assigned.'
41+
required: false
3942
trigger-phrase:
4043
description: 'Prefix used to identify Asana tasks (URL). If not provided, any Asana URL in the text will be matched.'
4144
required: false
45+
is-complete:
46+
description: 'Set to true to mark the task(s) as complete, false to mark as incomplete. Defaults to false if not provided. [true | false].'
47+
required: false
48+
is-pinned:
49+
description: 'Pin a comment on Asana task(s). [true | false].'
50+
required: false
4251
github-repository:
4352
description: 'Github Repository to check for the latest release.'
4453
required: false

0 commit comments

Comments
 (0)