-
Notifications
You must be signed in to change notification settings - Fork 23
33 lines (25 loc) · 736 Bytes
/
ci.yml
File metadata and controls
33 lines (25 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Auto Mirror (every 15 minutes)
on:
schedule:
- cron: "*/15 * * * *" # каждые 15 минут (UTC)
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
timeout-minutes: 15 # жёсткий лимит, как было раньше
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install requests==2.32.5 PyGithub==2.8.1
- name: Run mirror script
env:
MY_TOKEN: ${{ secrets.MY_TOKEN }}
run: |
python mirror.py