VAULT-25970: Add changelog for ACME clients in the UI #15223
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
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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
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 |