Skip to content

Commit

Permalink
Update merge-linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SamulKyull authored Apr 15, 2024
1 parent 9d3e941 commit 71391b9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/merge-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,28 @@ jobs:
branch: ${{env.KERNEL_BRANCH}}
directory: kernel/dst/${{env.KERNEL_BRANCH}}/${{env.KERNEL_BRANCH}}
force: true

linux-6_1_aosp:
runs-on: ubuntu-latest
env:
KERNEL_URL: https://android.googlesource.com/kernel/common.git/+archive/refs/heads/
KERNEL_VERSION: android14-6.1-2023-10
KERNEL_BRANCH: linux-6.1-aosp
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 ${{env.KERNEL_BRANCH}}
continue-on-error: true
run: ./init.sh -u ${{env.KERNEL_URL}} -v ${{env.KERNEL_VERSION}} -b ${{env.KERNEL_BRANCH}} -t AOSP

- name: Push changes ${{env.KERNEL_BRANCH}}
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.SY_PAT }}
branch: ${{env.KERNEL_BRANCH}}
directory: kernel/dst/${{env.KERNEL_BRANCH}}/${{env.KERNEL_BRANCH}}
force: true

0 comments on commit 71391b9

Please sign in to comment.