Skip to content

Commit

Permalink
[ci] Add GitHub Action to backport PR (google#2017)
Browse files Browse the repository at this point in the history
Closes google#2014

gherrit-pr-id: I70bf2382d041da61ff8d85be9fc593cacc08e215
  • Loading branch information
joshlf committed Nov 5, 2024
1 parent 1fb6365 commit 558b006
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/backport-pr.yml
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 }}

0 comments on commit 558b006

Please sign in to comment.