Sync Workflow #59
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 Workflow | |
on: | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
sync: | |
name: Sync krkn-hub to the upstream repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Sync with GH CLI | |
env: | |
GH_TOKEN: ${{ secrets.SYNC_PAT }} | |
run: | | |
gh repo sync redhat-chaos/krkn-hub -b main |