Skip to content

.github/workflows/repo-sync.yml #5

.github/workflows/repo-sync.yml

.github/workflows/repo-sync.yml #5

Workflow file for this run

on:
schedule:
- cron: "* */1 * * *"
workflow_dispatch:
jobs:
master:
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: "master"
destination_branch: "master"
github_token: ${{ secrets.PAT }}
linux-6-6-y:
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: "linux-6.6.y"
destination_branch: "linux-6.6.y"
github_token: ${{ secrets.PAT }}
linux-6-1-y:
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: "linux-6.1.y"
destination_branch: "linux-6.1.y"
github_token: ${{ secrets.PAT }}