diff options
author | Robert Hensing <roberth@users.noreply.github.com> | 2023-02-08 00:24:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 00:24:28 +0100 |
commit | 40d8955b8977c19de5cf837a2711621b84b7375b (patch) | |
tree | 73782fba437076857761fba59f1287360df27539 /maintainers | |
parent | 3272a2d26fd24647509cddfc2267310416a41cd1 (diff) |
Apply suggestions from code review
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
Diffstat (limited to 'maintainers')
-rw-r--r-- | maintainers/backporting.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/maintainers/backporting.md b/maintainers/backporting.md index fe860bc61..2424050c8 100644 --- a/maintainers/backporting.md +++ b/maintainers/backporting.md @@ -1,8 +1,12 @@ # Backporting -Backports are handled by the backport action. +To [automatically backport a pull request](https://github.com/NixOS/nix/blob/master/.github/workflows/backport.yml) to a release branch once it's merged, assign it a label of the form [`backport <branch>`](https://github.com/NixOS/nix/labels?q=backport). -Since GitHub Actions can not trigger actions, the backport PR needs to be re-triggered by another actor. This is achieved by closing and reopening the backport PR. +Since [GitHub Actions workflows will not trigger other workflows](https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow), checks on the automatic backport need to be triggered by another actor. +This is achieved by closing and reopening the backport pull request. -This specifically affects the `installer_test` check, but note that it only runs after the other tests, so it may take a while to appear. +This specifically affects the [`installer_test`] check. +Note that it only runs after the other tests, so it may take a while to appear. + +[`installer_test`]: https://github.com/NixOS/nix/blob/895dfc656a21f6252ddf48df0d1f215effa04ecb/.github/workflows/ci.yml#L70-L91 |