Skip to content

Update merge-linux.yml #57

Update merge-linux.yml

Update merge-linux.yml #57

Workflow file for this run

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