Update sync-repo.yml #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SYNC REPO | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission. | |
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/ | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: mm-unstable | |
path: linux | |
- name: add-remote | |
run: | | |
cd linux | |
git remote add kernel git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm | |
git remote -v | |
- name: pull-push-mm-unstable | |
run: | | |
cd linux | |
git pull kernel mm-unstable:mm-unstable-local | |
git push -f origin mm-unstable-local:mm-unstable | |
- uses: actions/checkout@v4 | |
with: | |
ref: mm-stable | |
path: linux | |
- name: pull-push-mm-stable | |
run: | | |
cd linux | |
git pull kernel mm-stable:mm-stable-local | |
git push -f origin mm-stable-local:mm-stable | |
- uses: actions/checkout@v4 | |
with: | |
ref: master | |
path: linux | |
- name: pull-master | |
run: | | |
cp linux/.github/workflows/sync-repo.yml . | |
cd linux | |
git pull kernel master:master-local | |
- uses: actions/checkout@v4 | |
with: | |
ref: master-local | |
path: linux | |
- name: pull-push-master | |
run: | | |
mkdir -p .github/workflows | |
cp ../sync-repo.yml .github/workflows/sync-repo.yml | |
git add .github/workflows/sync-repo.yml | |
git commit -m "[AUTO-COMMIT] AUTO SYNC KERNEL REPO" .github/workflows/sync-repo.yml | |
git push -f origin master-local:master | |