Skip to content

Merge from upstream #1007

Merge from upstream

Merge from upstream #1007

Workflow file for this run

name: Merge from upstream
on:
schedule:
# scheduled for 00:00 every day
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
merge-from-upstream-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.SYNC_TOKEN }}
- name: Merge from upstream repo
uses: aormsby/Fork-Sync-With-Upstream-action@main
with:
target_sync_branch: master
upstream_sync_branch: master
upstream_sync_repo: PCSX2/pcsx2
- name: New commits found
if: steps.sync.outputs.has_new_commits == 'true'
run: echo "New commits were found to sync."
- name: No new commits
if: steps.sync.outputs.has_new_commits == 'false'
run: echo "There were no new commits."
- name: Show value of 'has_new_commits'
run: echo ${{ steps.sync.outputs.has_new_commits }}