deferred actions: add common functionality for evaluating unexpanded and expanded modules #3231
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.4.0@sha256:0c0c7e452673de42675d7966bfa1268103ca60c9de30ae4a72b2136d448a54dc | |
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 }} |