Skip to content

Commit

Permalink
Introduce backport GHA (#8368)
Browse files Browse the repository at this point in the history
Context
Introduces backport GitHub action for automation-aided propagation of changes between branches.

usage:
comment
/backport to <target bracnh>
on PR that needs to be backported (ideally after merging). New PR will be created backporting to the requested branch.
  • Loading branch information
JanKrivanek authored Feb 8, 2023
1 parent 1085e21 commit 03dae90
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Backport PR to branch
on:
issue_comment:
types: [created]

permissions:
contents: write
issues: write
pull-requests: write
actions: write

jobs:
backport:
uses: dotnet/arcade/.github/workflows/backport-base.yml@main
with:
pr_description_template: |
Backport of #%source_pr_number% to %target_branch%
/cc %cc_users%

0 comments on commit 03dae90

Please sign in to comment.