From 0b0d214b8281263371953a7f662198d936fcc8fa Mon Sep 17 00:00:00 2001 From: Stuart Rowlands Date: Fri, 4 Oct 2024 08:15:29 +1000 Subject: [PATCH] Master branch --- .github/workflows/sync.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index 88f7a23..a0304a5 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -8,14 +8,14 @@ on: jobs: sync_with_upstream: runs-on: ubuntu-latest - name: Sync main with upstream latest + name: Sync master with upstream latest steps: # Step 1: run a standard checkout action, provided by github - - name: Checkout main + - name: Checkout master uses: actions/checkout@v2 with: - ref: main + ref: master # Step 2: run this sync action - specify the upstream repo, upstream branch to sync with, and target sync branch - name: Pull (Fast-Forward) upstream changes