This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2634e87
Showing
7 changed files
with
2,038 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Core | ||
on: | ||
schedule: | ||
- cron: "0 21 * * 1" | ||
|
||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
sync: | ||
name: Sync | ||
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
|
||
- name: Set up Git | ||
run: | | ||
git config --local user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Set up Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install python-dateutil | ||
cargo install --git https://github.com/MRepoApp/mrepo-rs.git --features git | ||
- name: Sync | ||
run: | | ||
mrepo update --ssh-key='${{ secrets.SSH_PRIVATE_KEY }}' | ||
mrepo upgrade --pretty | ||
- name: Push | ||
run: | | ||
python scripts/git-commit.py | ||
git push origin main |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# MacOS | ||
.DS_Store |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Magisk Modules Alt Repo (mirror) | ||
- This repository stores modules for [MRepo](https://github.com/MRepoApp/MRepo). | ||
- This is a mirror of [Magisk-Modules-Alt-Repo](https://github.com/Magisk-Modules-Alt-Repo). | ||
|
||
## Use in MRepo | ||
``` | ||
https://raw.githubusercontent.com/MRepoApp/magisk-modules-alt-repo/main/ | ||
``` |
Oops, something went wrong.