Skip to content

Commit

Permalink
add backport assistant (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-gopalan authored Oct 21, 2024
1 parent 7a4180a commit 97bfcdc
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 assistant runner

on:
pull_request_target:
types:
- closed
- labeled

jobs:
backport:
runs-on: ubuntu-latest
container: hashicorpdev/backport-assistant:0.4.3
steps:
- name: Backport changes to targeted release branch
run: backport-assistant backport
env:
BACKPORT_LABEL_REGEXP: "backport/vault-(?P<target>\\d+\\.\\d+\\.\\w+)"
BACKPORT_TARGET_TEMPLATE: "release/vault-{{.target}}"
GITHUB_TOKEN: ${{ secrets.VAULT_ECO_GITHUB_TOKEN }}

0 comments on commit 97bfcdc

Please sign in to comment.