mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 21:53:40 -05:00
Create sync_forks.yml
This commit is contained in:
parent
c113b3d021
commit
605340c29d
1 changed files with 28 additions and 0 deletions
28
.github/workflows/sync_forks.yml
vendored
Normal file
28
.github/workflows/sync_forks.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: Sync Forks
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '*/20 * * * *' # Runs every 20 minutes
|
||||
workflow_dispatch: # Allows manual triggering
|
||||
|
||||
jobs:
|
||||
sync:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Git
|
||||
run: |
|
||||
git config --global user.name "github-actions[bot]"
|
||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install -y git
|
||||
|
||||
- name: Run Sync Script
|
||||
run: |
|
||||
mkdir -p /home/runner/work/clones
|
||||
export BASE_DIR="/home/runner/work/clones"
|
||||
python3 sync_forks.py
|
Loading…
Add table
Reference in a new issue