From abe13adb8947dc0dbf17b7b8caafbb7b25240a11 Mon Sep 17 00:00:00 2001 From: Uku Pattak Date: Thu, 21 Dec 2023 17:59:45 +0200 Subject: [PATCH] Make even wider --- README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 7a0c076..bd9ca70 100644 --- a/README.md +++ b/README.md @@ -32,25 +32,25 @@ jobs: ## All options -|             Option             | Default | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `github-token` | | **REQUIRED** | -| `trello-api-token` | | **REQUIRED** Visit https://trello.com/app-key. | -| `trello-auth-token` | | **REQUIRED** Visit https://trello.com/app-key and click "Generate a token". | -| `github-include-pr-comments` | `true` | Scans PR comments to find Trello card URLs. | -| `github-include-pr-branch-name` | `false` | Uses the branch name to find card id (e.g. `feature/38-card-title`). Comments card link to the PR if found. | -| `github-require-keyword-prefix` | `false` | Only matches Trello URLs prefixed with ["Closes" etc](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword). | -| `github-require-trello-card` | `false` | Throws an error if no Trello card can be found in the PR. | -| `trello-list-id-pr-draft` | | Trello list ID for draft pull request. Useful when you want to move the card back to "In progress" when ready PR is converted to draft. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | -| `trello-list-id-pr-open` | | Trello list ID for open pull request. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | -| `trello-list-id-pr-closed` | | Trello list ID for closed (merged) pull request. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | -| `trello-board-id` | | Trello board ID where to move the cards. Useful when you want the action to move the card out from the backlog. [How to find board ID](https://stackoverflow.com/a/50908600/2311110). | -| `trello-card-position` | `'top'` | Position of the card after being moved to a list. Options: `'top'` or `'bottom'`. | -| `github-users-to-trello-users` | | Newline-separated list of mapping between GitHub username and Trello username. Use it for people who have different usernames in GitHub and Trello. If the current username is not in the list, we still try to find a Trello user with GitHub username. Look below to see an example. | -| `trello-organization-name` | | Your organization name to avoid assigning cards to outside members, edit your workspace details and look for the short name. | -| `trello-remove-unrelated-members` | `true` | Removes card members who are not authors or assignees of the PR. | -| `trello-add-labels-to-cards` | `true` | Assigns branch category (e.g. `feature/foo`) label to Trello card. | -| `trello-conflicting-labels` | `true` | When a card has one of these labels then branch category label is not assigned. Separate label names with `;`. | +|                         Option                         | Default | Description | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `github-token` | | **REQUIRED** | +| `trello-api-token` | | **REQUIRED** Visit https://trello.com/app-key. | +| `trello-auth-token` | | **REQUIRED** Visit https://trello.com/app-key and click "Generate a token". | +| `github-include-pr-comments` | `true` | Scans PR comments to find Trello card URLs. | +| `github-include-pr-branch-name` | `false` | Uses the branch name to find card id (e.g. `feature/38-card-title`). Comments card link to the PR if found. | +| `github-require-keyword-prefix` | `false` | Only matches Trello URLs prefixed with ["Closes" etc](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword). | +| `github-require-trello-card` | `false` | Throws an error if no Trello card can be found in the PR. | +| `trello-list-id-pr-draft` | | Trello list ID for draft pull request. Useful when you want to move the card back to "In progress" when ready PR is converted to draft. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | +| `trello-list-id-pr-open` | | Trello list ID for open pull request. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | +| `trello-list-id-pr-closed` | | Trello list ID for closed (merged) pull request. [How to find list ID](https://stackoverflow.com/a/50908600/2311110). | +| `trello-board-id` | | Trello board ID where to move the cards. Useful when you want the action to move the card out from the backlog. [How to find board ID](https://stackoverflow.com/a/50908600/2311110). | +| `trello-card-position` | `'top'` | Position of the card after being moved to a list. Options: `'top'` or `'bottom'`. | +| `github-users-to-trello-users` | | Newline-separated list of mapping between GitHub username and Trello username. Use it for people who have different usernames in GitHub and Trello. If the current username is not in the list, we still try to find a Trello user with GitHub username. Look below to see an example. | +| `trello-organization-name` | | Your organization name to avoid assigning cards to outside members, edit your workspace details and look for the short name. | +| `trello-remove-unrelated-members` | `true` | Removes card members who are not authors or assignees of the PR. | +| `trello-add-labels-to-cards` | `true` | Assigns branch category (e.g. `feature/foo`) label to Trello card. | +| `trello-conflicting-labels` | `true` | When a card has one of these labels then branch category label is not assigned. Separate label names with `;`. | ## Examples