From 5b583196411b500fc3424ebfcaab03ebd80a99fa Mon Sep 17 00:00:00 2001 From: HL7 Webmaster Date: Fri, 15 Dec 2023 14:20:58 -0500 Subject: [PATCH] Initial commit --- .github/workflows/mirror.yml | 21 +++++++++++++++++++++ README.md | 1 + 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/mirror.yml create mode 100644 README.md diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..ed295a6 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,21 @@ +name: 'mirror' +on: + push: + branches: + - __mirror + schedule: + # Run everyday at 3 AM UTC + - cron: '0 3 * * *' + workflow_dispatch: + +jobs: + mirror: + runs-on: ubuntu-latest + name: mirror + steps: + - name: mirror + id: mirror + uses: bridgelightcloud/github-mirror-action@v2 + with: + origin: '' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md new file mode 100644 index 0000000..1fae5a8 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +This branch exists for internal purposes, to see the code, go to [the master branch](../../tree/master)