2021-05-24 17:42:28 +02:00
name : Backport
on :
2021-05-28 16:35:13 +02:00
pull_request_target :
2021-05-28 16:36:02 +02:00
types : [ closed, labeled]
2022-03-19 19:43:22 +01: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 19:53:38 +02:00
permissions :
contents : read
2021-05-24 17:42:28 +02:00
jobs :
backport :
2022-07-08 19:53:38 +02:00
permissions :
2022-12-26 12:07:59 +01: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 16:35:13 +02:00
name : Backport Pull Request
2021-06-14 13:41:10 +02: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 17:42:28 +02:00
runs-on : ubuntu-latest
steps :
2024-04-29 13:45:13 +02:00
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2021-05-24 17:42:28 +02:00
with :
2021-05-28 16:35:13 +02:00
ref : ${{ github.event.pull_request.head.sha }}
2021-05-24 17:42:28 +02:00
- name : Create backport PRs
2024-04-01 13:22:55 +02:00
uses : korthout/backport-action@ef20d86abccbac3ee3a73cb2efbdc06344c390e5 # v2.5.0
2021-05-24 17:42:28 +02:00
with :
2022-12-26 12:07:59 +01:00
# Config README: https://github.com/korthout/backport-action#backport-action
2023-03-06 10:14:20 +01:00
copy_labels_pattern : 'severity:\ssecurity'
2021-06-26 04:33:03 +02:00
pull_description : |-
Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}.
2023-09-06 13:58:14 +02:00
* [ ] Before merging, ensure that this backport is [acceptable for the release](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md#changes-acceptable-for-releases).
* Even as a non-commiter, if you find that it is not acceptable, leave a comment.