Skip to content

Sync

Sync #1

Workflow file for this run

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/checkout@v3
with:
path: style
ref: main
- run: |
cd style
git config --global user.email [email protected]
git config --global user.name Servo
git commit --allow-empty -m test
git push