Skip to content

Sync to Upstream

Sync to Upstream #153

Workflow file for this run

name: Sync to Upstream
on:
schedule:
- cron: '0 0 * * *' # update every day at 00:00
workflow_dispatch:
jobs:
sync_with_upstream:
runs-on: ubuntu-latest
name: Sync HEAD with upstream latest
steps:
- name: Fetch
uses: actions/checkout@v3
- name: Pull upstream changes
id: sync
uses: aormsby/[email protected]
with:
target_sync_branch: main
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_branch: main
upstream_sync_repo: aseprite/aseprite