Initial experimental support for deferred actions when count or for_each are unknown #2947
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.3.4@sha256:1fb1e4dde82c28eaf27f4720eaffb2e19d490c8b42df244f834f5a550a703070 | |
steps: | |
- name: Run Backport Assistant | |
run: | | |
backport-assistant backport | |
env: | |
BACKPORT_LABEL_REGEXP: "(?P<target>\\d+\\.\\d+)-backport" | |
BACKPORT_TARGET_TEMPLATE: "v{{.target}}" | |
GITHUB_TOKEN: ${{ secrets.ELEVATED_GITHUB_TOKEN }} |