docs: roll v0.6.3 #8
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: "Sync" | |
on: | |
push: | |
tags: | |
- "v0.*" | |
jobs: | |
sync-release-branch: | |
runs-on: "ubuntu-latest" | |
if: "startsWith(github.ref, 'refs/tags/v0.')" | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v3" | |
with: | |
fetch-depth: 0 | |
ref: "release-v0" | |
- name: "Configure Git" | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- name: "Sync Release Branch" | |
run: | | |
git fetch --tags | |
git checkout release-v0 | |
git reset --hard ${GITHUB_REF} | |
git push --force |