Skip to content

Releases: rematocorp/trello-integration-action

v9.11.1

20 Sep 12:13

Choose a tag to compare

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

15 Sep 07:30
81460d9

Choose a tag to compare

New features

  • Added trello-add-manual-labels-to-cards option to manually add correct labels to a card
  • Added trello-list-id-override option 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

29 Aug 13:30

Choose a tag to compare

Bug fixes

  • Made trello-move-to-merged-list-only-on-merge option actually work 🙃

v9.10.0

15 Aug 13:03

Choose a tag to compare

New features

  • Added the trello-move-to-merged-list-only-on-merge option, which only triggers move to merged list when the GitHub job is triggered by the closed action. 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

03 Feb 21:33

Choose a tag to compare

New features

  • Added the trello-list-id-pr-merged option, which can be used instead of the existing trello-list-id-pr-closed option. The previous option moved cards when a PR was closed, even if it wasn’t merged. #139. Kudos to @brayway05 👏

v9.8.3

28 Oct 07:39

Choose a tag to compare

Bug fixes

  • Avoid failing the job when the unrelated member is already removed from the Trello card

v9.8.2

26 Oct 11:24

Choose a tag to compare

Bug fixes

  • Avoid failing the job when the PR member is already assigned to the Trello card

v9.8.1

25 Oct 10:51

Choose a tag to compare

Bug fixes

  • Avoid failing the job when the card has already been moved

v9.8.0

23 Oct 08:25

Choose a tag to compare

New features

  • Add github-create-new-card-on-merge option 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/') ... }}

v9.7.0

24 Sep 11:49

Choose a tag to compare

New features

  • Improve logs output format with startGroup
  • Create new card faster with /new-trello-card PR body text to avoid creating two new Trello cards when action is triggered multiple times in close timeframe