Skip to content

Merge from upstream (PAL MESH) #1066

Merge from upstream (PAL MESH)

Merge from upstream (PAL MESH) #1066

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