Skip to content

Sync Upstream Release #147

Sync Upstream Release

Sync Upstream Release #147

Workflow file for this run

name: Sync Upstream Release
on:
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run sync
run: bin/sync
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push
run: git push origin HEAD --tags