Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SanmerDev committed Jun 22, 2024
0 parents commit 2634e87
Show file tree
Hide file tree
Showing 7 changed files with 2,038 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/core.yml
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# MacOS
.DS_Store
8 changes: 8 additions & 0 deletions README.md
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/
```
Loading

0 comments on commit 2634e87

Please sign in to comment.