Skip to content

Positioning

Positioning #2

Workflow file for this run

name: Status Page CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add remote downstream repo
run: |
git config --unset-all http.https://github.com/.extraheader
git remote add downstream https://gcestechnology:${{secrets.DOWNSTREAM_PAT}}@github.com/gcestechnology/status-page.git
- name: Check token
run: echo ${{secrets.DOWNSTREAM_PAT}}
- name: Push changes to downstream repo
run: git push -f downstream HEAD:main