Merge pull request #7366 from filecoin-project/feat/sync-master-main

sync branch main with master on updates
This commit is contained in:
Jakub Sztandera 2021-09-22 21:03:55 +02:00 committed by GitHub
commit 7e933f7045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
.github/workflows/sync-master-main.yaml vendored Normal file
View File

@ -0,0 +1,14 @@
name: sync-master-main
on:
push:
branches:
- master
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: update remote branch main
run: |
# overrides the remote branch (origin:github) `main`
git push origin --force master:main