Update submodules #1
Workflow file for this run
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: Update submodules | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: | |
- push | |
- pull request | |
repo: Grill-Laux/KernelSU | |
jobs: | |
los-update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Kernel | |
uses: actions/checkout@v3 | |
with: | |
repository: Grill-Laux/kernel_oneplus_sdm845 | |
ref: los/lineage-21.0 | |
- name: Update submodule(s) | |
run: | | |
git config --global user.name "Grill-Laux" | |
git config --global user.email "moegluwu0@gmail.com" | |
git submodule update --init --remote --recursive -f | |
git commit -asm "KernelSU: Merge to newest" | |
git push | |
oos-update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Kernel | |
uses: actions/checkout@v3 | |
with: | |
repository: Grill-Laux/kernel_oneplus_sdm845 | |
ref: oos/11.0 | |
- name: Update submodule(s) | |
run: | | |
git config --global user.name "Grill-Laux" | |
git config --global user.email "moegluwu0@gmail.com" | |
git submodule update --init --remote --recursive -f | |
git commit -asm "KernelSU: Merge to newest" | |
git push |