Releases: rematocorp/trello-integration-action
Releases · rematocorp/trello-integration-action
v9.11.1
Bug fixes
- Fixed Trello card search from branch name when the branch name is very long and causes weird 500 error on Trello API side. Now we retry with a shorter query.
v9.11.0
New features
- Added
trello-add-manual-labels-to-cardsoption to manually add correct labels to a card - Added
trello-list-id-overrideoption to be able to move the cards to an arbitrary list
Read more from #197. Big kudos to @Pefington for the contribution :)
v9.10.1
Bug fixes
- Made
trello-move-to-merged-list-only-on-mergeoption actually work 🙃
v9.10.0
New features
- Added the
trello-move-to-merged-list-only-on-mergeoption, which only triggers move to merged list when the GitHub job is triggered by theclosedaction. Remato needs it so that our other automations could move the card forward on the Trello board without this automation moving them back when someone adds a comment to the PR. - Introduced advanced configuration for list IDs so one could use different list ID depending on the branch name. Read more from #140
trello-list-id-pr-closed: |-
release/*:65e9cd42133cce03db170000
*:65e9cd42133cce03db172222
v9.9.0
New features
- Added the
trello-list-id-pr-mergedoption, which can be used instead of the existingtrello-list-id-pr-closedoption. The previous option moved cards when a PR was closed, even if it wasn’t merged. #139. Kudos to @brayway05 👏
v9.8.3
Bug fixes
- Avoid failing the job when the unrelated member is already removed from the Trello card
v9.8.2
Bug fixes
- Avoid failing the job when the PR member is already assigned to the Trello card
v9.8.1
Bug fixes
- Avoid failing the job when the card has already been moved
v9.8.0
New features
- Add
github-create-new-card-on-mergeoption which creates a new Trello card from PR details if no card is linked and the PR is merged.- Remato uses it like this:
github-create-new-card-on-merge: ${{ github.event_name == 'pull_request' && !startsWith(github.head_ref, 'release/') && !startsWith(github.head_ref, 'dependabot/') ... }}
- Remato uses it like this:
v9.7.0
New features
- Improve logs output format with
startGroup - Create new card faster with
/new-trello-cardPR body text to avoid creating two new Trello cards when action is triggered multiple times in close timeframe