2021-05-24 15:42:28 +00:00
name : Backport
on :
2021-05-28 14:35:13 +00:00
pull_request_target :
2021-05-28 14:36:02 +00:00
types : [ closed, labeled]
2021-05-24 15:42:28 +00:00
jobs :
backport :
2021-05-28 14:35:13 +00:00
name : Backport Pull Request
2021-06-14 11:41:10 +00:00
if : github.repository_owner == 'NixOS' && github.event.pull_request.merged == true && (github.event_name != 'labeled' || startsWith('backport', github.event.label.name))
2021-05-24 15:42:28 +00:00
runs-on : ubuntu-latest
steps :
2021-05-25 07:41:07 +00:00
- uses : actions/checkout@v2
2021-05-24 15:42:28 +00:00
with :
# required to find all branches
fetch-depth : 0
2021-05-28 14:35:13 +00:00
ref : ${{ github.event.pull_request.head.sha }}
2021-05-24 15:42:28 +00:00
- name : Create backport PRs
2021-05-25 07:44:35 +00:00
# should be kept in sync with `version`
2021-07-25 18:22:26 +00:00
uses : zeebe-io/backport-action@v0.0.5
2021-05-24 15:42:28 +00:00
with :
2021-06-26 02:33:03 +00:00
# Config README: https://github.com/zeebe-io/backport-action#backport-action
2021-05-24 15:42:28 +00:00
github_token : ${{ secrets.GITHUB_TOKEN }}
github_workspace : ${{ github.workspace }}
2021-05-25 07:44:35 +00:00
# should be kept in sync with `uses`
2021-07-25 18:22:26 +00:00
version : v0.0.5
2021-06-26 02:33:03 +00:00
pull_description : |-
Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}.
2021-06-26 02:37:39 +00:00
* [ ] Before merging, ensure that this backport complies with the [Criteria for Backporting](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#criteria-for-backporting-changes).
2021-06-26 02:33:03 +00:00
* Even as a non-commiter, if you find that it does not comply, leave a comment.