Skip to content

Create release for v3.5.4 (#1279) #280

Create release for v3.5.4 (#1279)

Create release for v3.5.4 (#1279) #280

Workflow file for this run

# The Purpose of this workflow file is to enable us to automatically
# synchronize the staging repository with the latest commit
# of CATcher-org/CATcher.
name: Fetch Upstream Master to Staging
on:
push:
branches: [master]
jobs:
fetch_from_upstream:
if: ${{ github.repository == 'CATcher-org/CATcher' }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Upstream
uses: actions/checkout@v2
with:
repository: CATcher-org/CATcher-staging
ref: master
token: ${{ secrets.STAGING_TOKEN }}
fetch-depth: 0
- name: Merge Upstream
run: |
git config user.name github-actions
git config user.email [email protected]
git remote add upstream https:/CATcher-org/CATcher.git
git fetch upstream
git merge upstream/master --allow-unrelated-histories
git push origin master -f