Releases: korthout/backport-action
Releases · korthout/backport-action
Backport-action 0.0.9
What's Changed
- Add configurable PR title template by @dlavrenuek in #255
- Update to node 16 by @basefas in #295
Documentation
- Workflow should not trigger on own comments by @remcowesterhoud in #244
Testing
Other
- Update dependencies to latest available
New Contributors
- @remcowesterhoud made their first contribution in #244
- @dlavrenuek made their first contribution in #254
- @basefas made their first contribution in #295
Full Changelog: v0.0.8...v0.0.9
Backport-action 0.0.8
Bug fixes
- Support backporting pull requests with empty description (i.e. body) by @korthout in #188
- A failed backport should not prevent the next backport by @oleschoenburg in #221
- Disable auto-request reviewers feature by @korthout in #240
New Contributors
- @oleschoenburg made their first contribution in #221
Full Changelog: v0.0.7...v0.0.8
Backport-action 0.0.7
Bug fixes
- baseref is sometimes not found #187
Other
- update dependencies to latest available
Full Changelog: v0.0.6...v0.0.7
Backport-action 0.0.6
Features
- add placeholder
${pull_author}
for username of the original pull request's author #84
Bug fixes
- pull request cannot be backported when branch is deleted from github #90
Other
- deprecate
version
input #103
From now on, users no longer need to provide this input. Previously, this input was required by the action and had to be kept in-sync with the action's version. For backwards compatibility it was deprecated, but it is no longer used for anything. Users can safely remove it from thewith
section of their workflow. - fetch all necessary git refs #162
The backport action now fetches only the necessary git history. Previously, users had to setfetch-depth: 0
for theactions/checkout@v2
action, to fetch the entire git history. This is no longer needed. - update dependencies to latest available