-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (45 loc) · 1.37 KB
/
merge-linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Merge Linux
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: write
jobs:
linux-5_10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set id
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Merge Linux 5.10
continue-on-error: true
run: ./init.sh -u https://cdn.kernel.org/pub/linux/kernel/v5.x/ -v linux-5.10.214 -b linux-5.10
- name: Push changes Linux 5.10
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.SY_PAT }}
branch: linux-5.10
directory: kernel/dst/linux-5.15/linux-5.10
force: true
linux-5_15:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set id
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Merge Linux 5.15
continue-on-error: true
run: ./init.sh -u https://cdn.kernel.org/pub/linux/kernel/v5.x/ -v linux-5.15.154 -b linux-5.15
- name: Push changes Linux 5.15
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.SY_PAT }}
branch: linux-5.15
directory: kernel/dst/linux-5.15/linux-5.15
force: true