en: add doc about volume snapshot backup/restore across multiple kube… #1591
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: Trigger docs site update | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract sha | |
id: extract | |
shell: bash | |
run: | | |
echo "sha=$(sha=${{ github.sha }}; echo ${sha:0:6})" >> $GITHUB_OUTPUT | |
- name: trigger docs-staging workflow | |
run: | | |
curl \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: token ${{ secrets.DOCS_STAGING }}" \ | |
https://api.github.com/repos/pingcap/docs-staging/actions/workflows/update.yml/dispatches \ | |
-d '{"ref":"main","inputs":{"full": "false", "repo":"${{ github.repository }}","branch":"${{ github.ref_name }}"}}' |