Skip to content

Auto Key Checker

Auto Key Checker #2428

Workflow file for this run

name: Auto Mirror (twice a day)
on:
schedule:
- cron: "0 3 * * *" # 06:00 МСК
- cron: "0 21 * * *" # 24:00 МСК
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
timeout-minutes: 55 # защита от зависаний
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