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]
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.
2024-11-29 23:46:31 +00:00
permissions : {}
2022-07-08 17:53:38 +00:00
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 :
2024-11-29 23:46:31 +00:00
# Use a GitHub App to create the PR so that CI gets triggered
# The App is scoped to Repository > Contents and Pull Requests: write for Nixpkgs
- uses : actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
id : app-token
with :
app-id : ${{ vars.BACKPORT_APP_ID }}
private-key : ${{ secrets.BACKPORT_PRIVATE_KEY }}
2024-10-28 11:50:56 +00:00
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2021-05-24 15:42:28 +00:00
with :
2021-05-28 14:35:13 +00:00
ref : ${{ github.event.pull_request.head.sha }}
2024-11-29 23:46:31 +00:00
token : ${{ steps.app-token.outputs.token }}
2021-05-24 15:42:28 +00:00
- name : Create backport PRs
2024-06-03 11:08:55 +00:00
uses : korthout/backport-action@bd410d37cdcae80be6d969823ff5a225fe5c833f # v3.0.2
2021-05-24 15:42:28 +00:00
with :
2022-12-26 11:07:59 +00:00
# Config README: https://github.com/korthout/backport-action#backport-action
2023-03-06 09:14:20 +00:00
copy_labels_pattern : 'severity:\ssecurity'
2024-11-29 23:46:31 +00:00
github_token : ${{ steps.app-token.outputs.token }}
2021-06-26 02:33:03 +00:00
pull_description : |-
Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}.
2023-09-06 11:58:14 +00: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.