Backport of [QT-523] Remove copyright/license header from raft config used in theDocker/K8S integration test into release/1.11.x #14339
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 | |
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@v2 | |
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 |