Prepare for v0.16.2 release #39
Workflow file for this run
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
name: Backport Assistant Runner | |
on: | |
pull_request_target: | |
types: | |
- closed | |
jobs: | |
backport: | |
if: github.event.pull_request.merged | |
runs-on: ubuntu-latest | |
container: hashicorpdev/backport-assistant:0.2.2 | |
steps: | |
- name: Run Backport Assistant for release branches | |
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 }} |