diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000000000..d18544ac91d95 --- /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: 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git' + GITHUB_TOKEN: ${{ secrets.PAT }} diff --git a/README.md b/README.md new file mode 100644 index 0000000000000..a7542359e9f27 --- /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) \ No newline at end of file