Skip to content

Commit

Permalink
Automatically sync commits from upstream
Browse files Browse the repository at this point in the history
Change-type: patch
Signed-off-by: Kyle Harding <[email protected]>
  • Loading branch information
klutchell committed Sep 21, 2023
1 parent dd2e4f4 commit 48c0b91
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/upstream-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: "Upstream Sync"

on:
schedule:
# at 07:00 every Monday and Thursday
- cron: "0 7 * * 1,4"
pull_request:
branches:
- master
- main
workflow_dispatch:

jobs:
sync_branch:
runs-on: ubuntu-latest
name: Sync branch

strategy:
matrix:
branch:
- dunfell
- honister
- kirkstone
- thud
- warrior
- pyro
- rocko
- sumo

steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}

# https://github.com/aormsby/Fork-Sync-With-Upstream-action
- name: Sync upstream commits
id: sync
uses: aormsby/[email protected]
with:
target_sync_branch: ${{ matrix.branch }}
target_repo_token: ${{ secrets.GITHUB_TOKEN }}
upstream_sync_branch: ${{ matrix.branch }}
host_domain: git.yoctoproject.org
upstream_sync_repo: git/poky
test_mode: ${{ github.event_name == 'pull_request' }}

- name: New commits synced
if: steps.sync.outputs.has_new_commits == 'true'
run: echo "New commits were synced." >> $GITHUB_STEP_SUMMARY

- name: No new commits
if: steps.sync.outputs.has_new_commits == 'false'
run: echo "There were no new commits." >> $GITHUB_STEP_SUMMARY

0 comments on commit 48c0b91

Please sign in to comment.