Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.14 KB

trello.md

File metadata and controls

49 lines (35 loc) · 1.14 KB

trello Plugin

This plugin creates a new Trello board and lists.

Usage

This plugin depends on the following two environment variables:

  • TRELLO_API_KEY
  • TRELLO_TOKEN

Set the values accordingly before using this plugin.

Tips:

Trello board description is managed by DevStream, please don't modify it.

To create a Trello API key and token, see here.

tools:
- name: my-trello-board
  # name of the plugin
  plugin: trello
  # options for the plugin, checkout the version from the GitHub releases
  options:
    # the repo's owner
    owner: YOUR_GITHUB_USERNAME
    # for which repo this board will be used
    repo: YOUR_REPO_NAME
    # the Tello board name. If empty, use owner/repo as the board's name.
    kanbanBoardName: KANBAN_BOARD_NAME

Replace the following from the config above:

  • YOUR_GITHUB_USERNAME
  • YOUR_REPO_NAME
  • KANBAN_BOARD_NAME

Outputs

This plugin has four outputs:

  • boardId
  • todoListId
  • doingListId
  • doneListId

which can be used by the trello-github-integ plugin. Refer to the trello-github-integ plugin doc for more details.