Skip to content

Merge from upstream (PALX) #541

Merge from upstream (PALX)

Merge from upstream (PALX) #541

name: Merge from upstream (PALX)
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:
ref: orgpal-palx
fetch-depth: 0
token: ${{ secrets.UPTODATE }}
- name: Merge from upstream repo
uses: aormsby/Fork-Sync-With-Upstream-action@v3.2
with:
target_sync_branch: orgpal-palx
upstream_sync_branch: main
upstream_sync_repo: nanoframework/nf-interpreter
- 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 }}