clickup-simple-cli
v1.0.3
Published
Automate creating new CU tasks
Downloads
1
Readme
Clickup CLI tool
Usage:
jarvis-cu [options] [command]
CLI tool for creating and udpating tasks
Options:
-t, --token <token> Clickup PAT
-h, --help display help for command
Commands:
create [options] <name> create new task
help [command] display help for command
Create new task
jarvis-cu create [options] <name>
Create new ClickUp task
Arguments:
name Name of the task
Options:
-a, --assignees <assignees> Comma-separated list of assignees
-p, --priority <priority> Task Priority (default: "3")
-l, --list <list> List ID
-s, --status <status> Task Status (default: "DEPLOYED")
-d, --description <description>
-t, --tags <tags> Comma-separated list of tags
-h, --help display help for command
ENV variables config
- add ENV variables with the CU prefix to override the options
CU_token
CU_list
CU_assignees
CU_priority
CU_status
CU_description
CU_tags
Github Action Example
- name: Create ClickUp task
env:
CU_assignees: 123456
CU_list: 654321
CU_token: ${{ secrets.CLICKUPPAT }}
CU_tags: "test,tag"
run: |
npm i -g clickup-simple-cli
cu-cli create -d "Clickup CLI Test message
with multiline content" "Task name"