-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Add GitHub Action to backport PR (#2017)
Closes #2014 gherrit-pr-id: I70bf2382d041da61ff8d85be9fc593cacc08e215
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2024 The Fuchsia Authors | ||
# | ||
# Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0 | ||
# <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT | ||
# license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option. | ||
# This file may not be copied, modified, or distributed except according to | ||
# those terms. | ||
|
||
name: Backport PR | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
commit: | ||
description: "Commit to backport" | ||
required: true | ||
target_branch: | ||
description: "Target branch for the new PR" | ||
required: true | ||
default: 'main' | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
name: Backport PR | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
with: | ||
ref: ${{ github.event.inputs.target_branch }} | ||
persist-credentials: false | ||
- name: Cherry-pick commit | ||
run: | | ||
set -eo pipefail | ||
git cherry-pick ${{ github.event.inputs.commit }} | ||
PR_TITLE="$(git log -1 --pretty=%s)" | ||
echo "PR_TITLE=$PR_TITLE" >> $GITHUB_ENV | ||
AUTHOR="$(git log -1 --pretty='%an <%ae>')" | ||
echo "AUTHOR=$AUTHOR" >> $GITHUB_ENV | ||
- name: Submit PR | ||
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 | ||
with: | ||
author: "${{ env.AUTHOR }}" | ||
committer: "${{ env.AUTHOR }}" | ||
title: "${{ env.PR_TITLE }}" | ||
branch: backport-${{ github.event.inputs.commit }} | ||
push-to-fork: google-pr-creation-bot/zerocopy | ||
token: ${{ secrets.GOOGLE_PR_CREATION_BOT_TOKEN }} |