Skip to content

Commit

Permalink
Create sync-repo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ioworker0 authored Mar 18, 2024
1 parent b401b62 commit c5d85a0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/sync-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: SYNC REPO

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set-remote
run: git remote set-url origin git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
- name: show-remote
run: git remote -v
- name: mm-stable
run: git checkout mm-stable
- name: pull-mm-stable
run: git pull

0 comments on commit c5d85a0

Please sign in to comment.