[llvm] workflows: Automatically make backport requests from merged PRs (PR #126993)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 07:51:33 PST 2025
================
@@ -0,0 +1,29 @@
+name: PR Release Workflow
+
+permissions:
+ contents: read
+
+on:
+ pull_request:
+ types:
+ - milestoned
+ - closed
+
+jobs:
+ backport-commit:
+ runs-on: ubuntu-22.04
+ if: >-
+ github.repository == 'llvm/llvm-project' &&
+ github.event.pull_request.merged &&
+ contains(github.event.pull_request.milestone.title, 'Release')
----------------
tstellar wrote:
They cherry-pick step would fail, because the github-automation.py script looks for the branch name in the description of the milestone. So if the milestone was for LLVM 21, it would try to cherry-pick to release/21.x and fail. If this happened, there wouldn't be a very descriptive error message, so we could do something to make the error reason more clear.
https://github.com/llvm/llvm-project/pull/126993
More information about the llvm-commits
mailing list