diff --git a/github/workflows/mirror.yml b/github/workflows/mirror.yml new file mode 100644 index 0000000..c74f729 --- /dev/null +++ b/github/workflows/mirror.yml @@ -0,0 +1,20 @@ +name: 'mirror' +on: + push: + branches: + - __mirror + schedule: + - cron: '* 3 * * *' + workflow_dispatch: + +jobs: + mirror: + runs-on: ubuntu-latest + name: mirror + steps: + - name: mirror + id: mirror + uses: bridgelightcloud/github-mirror@main + with: + origin: 'TARGET_REPO_HERE' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file