Skip to content

Automatically refresh upstream and create Docker image #1

Automatically refresh upstream and create Docker image

Automatically refresh upstream and create Docker image #1

Workflow file for this run

name: Merge upstream branches
on:
schedule:
- cron: '00 22 * * *'
workflow_dispatch:
jobs:
merge:
runs-on: ubuntu-latest
steps:
- name: Checkout using TOKEN
uses: actions/checkout@v3
with:
token: ${{ secrets.TOKEN }}
steps:

Check failure on line 16 in .github/workflows/sync-merge.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/sync-merge.yaml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: actions/checkout@v2
- name: Merge upstream
run: |
git config --global user.name 'DavidHenryThoreau'
git config --global user.email '[email protected]'
# "git checkout master" is unnecessary, already here by default
git pull --unshallow # this option is very important, you would get
# complains about unrelated histories without it.
# (but actions/checkout@v2 can also be instructed
# to fetch all git depth right from the start)
git remote add upstream https://github.com/SamR1/FitTrackee.git
git fetch --tags upstream
git checkout
git push origin
git merge upstream/master --no-edit
git push --tags origin
git push --force