Bump Depctrl #47
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: | |
branches: | |
- master | |
jobs: | |
sync-stable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for validation to succeed | |
uses: fountainhead/[email protected] | |
id: wait-for-depctrl | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
checkName: verify-depctrl | |
ref: ${{ github.sha }} | |
- name: Sync local status from remote | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Push status to stable | |
if: steps.wait-for-depctrl.outputs.conclusion == 'success' | |
run: git push origin HEAD:stable |