diff --git a/.github/workflows/mirror-main-to-master.yml b/.github/workflows/mirror-main-to-master.yml new file mode 100644 index 0000000..80efdd4 --- /dev/null +++ b/.github/workflows/mirror-main-to-master.yml @@ -0,0 +1,14 @@ +# Temporary job to support clients which still consume 'master' +# See: +name: Mirror 'main' branch to 'master' + +on: + push: + branches: master + +jobs: + publish-web: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: git push origin master:main