OHM Upstream Sync #10
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: OHM Upstream Sync | |
on: | |
schedule: | |
- cron: "20 5,17 * * *" | |
workflow_dispatch: | |
jobs: | |
upstream-sync: | |
name: Upstream Sync | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: Make the script files executable | |
run: chmod +x ./scripts/upstream_sync.sh | |
- name: Run sync script | |
uses: ./scripts/upstream_sync.sh |