Sync #6
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: | |
# schedule: | |
# - cron: '0 13 * * *' | |
workflow_dispatch: | |
jobs: | |
sync: | |
name: Sync with mozilla-central | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/cache@v3 | |
with: | |
path: cache/upstream | |
key: upstream | |
- run: | | |
./init.sh style | |
# git -C style remote set-url origin "$(git remote get-url origin)" | |
# git -C style push |