Skip to content

Releases: korthout/backport-action

Backport-action v3.0.2

28 May 11:42
Compare
Choose a tag to compare

Fixed

This release fixes a small bug in the draft_commit_conflicts option for the experimental conflict_resolution feature. When encountering conflicts, the backport pull request is opened in draft mode with the conflicts committed. Instructions are provided to resolve these conflicts locally, but these were incorrect. For more details see #421.

  • Checkout draft branch instead of target in suggestion by @korthout in #423

Full Changelog: v3.0.1...v3.0.2

Backport-action v3.0.1

28 May 10:29
Compare
Choose a tag to compare

Fixed

This release fixes a small bug in the draft_commit_conflicts option for the experimental conflict_resolution feature. When encountering conflicts, the backport pull request is opened in draft mode with the conflicts committed. Instructions are provided to resolve these conflicts locally, but these were incorrect. For more details see #421.

  • Suggest to fetch and checkout draft pr branch directly by @korthout in #422

Full Changelog: v3.0.0...v3.0.1

Backport-action v3.0.0

26 May 11:50
Compare
Choose a tag to compare

Changed

  • [Breaking] Use merge method to cherry-pick by default by @korthout in #420

This release changes the default behavior of the action to determine which commits are cherry-picked. While this behavior change doesn't necessarily require changes to your workflow, it warrants a major version bump.

Previously, the action cherry-picked the commits from the pull request. Specifically, those reachable from the pull request's head and not reachable from the pull request's base.

From now on, the action cherry-picks the commits based on the method used to merge the pull request by default.

  • For "Squash and merge", the action cherry-picks the squashed commit.
  • For "Rebase and merge", the action cherry-picks the rebased commits.
  • For "Merged as a merge commit", the action cherry-picks the commits from the pull request.

If you previously used the experimental detect_merge_method input, we suggest you remove it from your workflow. This experimental input has been deprecated and replaced by the cherry_picking input.

If you want to return to the previous behavior, you can set the cherry_picking input to pull_request_head.

This behavior was previously available via the experimental detect_merge_method input, introduced in #399. Special thanks go out to @jschmid1 for contributing this feature.

Added

This release also adds two new experimental features. Special shoutouts to @tasso94 and @vermz99 for contributing these!

  • Allow backporting to a downstream repository by @tasso94 in #405

With the experimental downstream_repo and downstream_owner inputs, you can backport to a repository other than where the workflow runs. For example, when you use a fork to maintain the previously released versions. You can also see this as backporting to a remote repository, but we felt it was better described as backporting to a downstream repository. The default behavior remains that the action always backports to the repository in which the workflow runs.

With the experimental conflict_resolution input, you can now change how the action will handle conflicts during cherry-picking. Set it to draft_commit_conflicts to create a draft pull request with the first conflict encountered committed to reduce some of the manual efforts in backporting. The default behavior stays like before and can be configured explicitly as fail. In that case, the backport fails when the cherry-pick encounters a conflict.

Updated Dependencies

New Contributors

Full Changelog: v2.5.0...v3.0.0

Backport-action v2.5.0

30 Mar 07:33
Compare
Choose a tag to compare

What's Changed

Updated Dependencies

New Contributors

Full Changelog: v2.4.1...v2.5.0

Backport-action v2.4.1

23 Jan 17:32
Compare
Choose a tag to compare

What's Changed

  • fix: rendering templates due to missing brackets by @jschmid1 in #410

Full Changelog: v2.4.0...v2.4.1

Backport-action v2.4.0

22 Jan 16:58
Compare
Choose a tag to compare

What's Changed

The new ${pull_description} placeholder allows you to copy the original pull request's description to the backported PR. This can be helpful if the body contains links to ticketing systems, related documents etc.

Full Changelog: v2.3.0...v2.4.0

Backport-action v2.3.0

16 Dec 13:53
Compare
Choose a tag to compare

What's Changed

This release introduces a new created_pull_numbers output that you can use in successive steps. For example, label the created pull requests or trigger your CI on the created pull requests. Massive thanks to @GuyAv46 for this contribution.

New Contributors

Full Changelog: v2.2.0...v2.3.0

Backport-action v2.2.0

04 Dec 08:34
Compare
Choose a tag to compare

What's Changed

This release introduces a new experimental input that you can use to configure experimental features. We encourage everyone to try them out and share feedback.

As a first experimental feature, this release adds detect_merge_method. When enabled, it cherry-picks the resulting commits based on the detected merge method. Give it a try if you're using the Squash and merge or Rebase and merge merge method for your pull requests, and please report any issues you encounter.

To enable merge method detection add the following to your backport workflow:

using: korthout/backport-action@v2
with:
  experimental: >
    {
      "detect_merge_method": true
    }

A special shoutout and heartfelt thanks to @jschmid1 for their outstanding contribution to the detect_merge_method feature!

Documentation

Updated Dependencies

  • build(deps): bump @types/dedent from 0.7.1 to 0.7.2 by @dependabot in #396

New Contributors

Full Changelog: v2.1.0...v2.2.0

Backport-action v2.1.1

07 Nov 21:04
Compare
Choose a tag to compare

What's Changed

This release fixes a small bug in the suggested steps to cherry-pick locally if backporting fails.

Updated Dependencies

  • build(deps): bump @types/dedent from 0.7.1 to 0.7.2 by @dependabot in #396

Full Changelog: v2.1.0...v2.1.1

Backport-action v2.1.0

05 Nov 13:45
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.0...v2.1.0