Skip to content

Backport of terraform: pin to 1.7.5 until 1.8.0 crash is resolved into release/1.16.x #14416

Backport of terraform: pin to 1.7.5 until 1.8.0 crash is resolved into release/1.16.x

Backport of terraform: pin to 1.7.5 until 1.8.0 crash is resolved into release/1.16.x #14416

Workflow file for this run

on:
pull_request:
types:
- closed
# cancel existing runs of the same workflow on the same ref
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
stable_website_cherry_pick:
if: github.event.pull_request.merged && contains(github.event.pull_request.labels.*.name, 'docs-cherrypick')
runs-on: ubuntu-latest
name: Cherry pick to stable-website branch
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: stable-website
- run: |
git fetch --no-tags --prune origin main
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git cherry-pick ${{ github.sha }}
git push origin stable-website