2021-05-24 16:42:28 +01:00
name : Backport
on :
2021-05-28 15:35:13 +01:00
pull_request_target :
2021-05-28 15:36:02 +01:00
types : [ closed, labeled]
2022-03-19 18:43:22 +00:00
# WARNING:
# When extending this action, be aware that $GITHUB_TOKEN allows write access to
# the GitHub repository. This means that it should not evaluate user input in a
# way that allows code injection.
2022-07-08 18:53:38 +01:00
permissions :
contents : read
2021-05-24 16:42:28 +01:00
jobs :
backport :
2022-07-08 18:53:38 +01:00
permissions :
2022-12-26 11:07:59 +00:00
contents : write # for korthout/backport-action to create branch
pull-requests : write # for korthout/backport-action to create PR to backport
2021-05-28 15:35:13 +01:00
name : Backport Pull Request
2021-06-14 12:41:10 +01: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 16:42:28 +01:00
runs-on : ubuntu-latest
steps :
2022-03-01 23:23:02 +00:00
- uses : actions/checkout@v3
2021-05-24 16:42:28 +01:00
with :
2021-05-28 15:35:13 +01:00
ref : ${{ github.event.pull_request.head.sha }}
2021-05-24 16:42:28 +01:00
- name : Create backport PRs
2023-01-09 11:10:35 +00:00
uses : korthout/backport-action@v1.0.1
2021-05-24 16:42:28 +01:00
with :
2022-12-26 11:07:59 +00:00
# Config README: https://github.com/korthout/backport-action#backport-action
2021-06-26 03:33:03 +01:00
pull_description : |-
Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}.
2021-06-26 03:37:39 +01: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 03:33:03 +01:00
* Even as a non-commiter, if you find that it does not comply, leave a comment.