Sync to Upstream #443
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 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 |