Removing the main to master sync GitHub workflow.

This commit is contained in:
Mike Edwards 2021-01-28 12:18:13 -08:00
parent 2e470e03b4
commit fe190cf6c9
2 changed files with 1 additions and 25 deletions

1
.github/workflows/README.md vendored Normal file
View File

@ -0,0 +1 @@
Github action workflows should be stored in this directrory.

View File

@ -1,25 +0,0 @@
name: main branch sync
on:
push:
branches:
- 'main'
jobs:
branch_sync:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
# persist-credentials: false allows us to use our own credentials for
# pushing to the repository. Otherwise, the default github actions token
# is used.
persist-credentials: false
fetch-depth: 0
- name: Update branch
env:
LLVMBOT_TOKEN: ${{ secrets.LLVMBOT_MAIN_SYNC }}
run: |
git push https://$LLVMBOT_TOKEN@github.com/${{ github.repository }} HEAD:master