forked from CATcher-org/CATcher
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 992 Bytes
/
staging-fetch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# 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: [14.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://github.com/CATcher-org/CATcher.git
git fetch upstream
git merge upstream/master --allow-unrelated-histories
git push origin master -f