From f94ba3aae9710840385af6886e13fdec5effb7a7 Mon Sep 17 00:00:00 2001 From: Johnny Mnemonic Date: Sun, 31 Dec 2023 21:56:13 +0100 Subject: [PATCH] Configure github-sync --- .github/workflows/repo-sync.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/repo-sync.yml diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml new file mode 100644 index 0000000000000..b9d558e99447d --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,19 @@ +on: + schedule: + - cron: "*/5 * * * *" + workflow_dispatch: + +jobs: + repo-sync: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + persist-credentials: false + - name: repo-sync + uses: repo-sync/github-sync@v2 + with: + source_repo: "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git" + source_branch: "*" + destination_branch: "*" + github_token: ${{ secrets.PAT }}