Skip to content

generator

generator #1792

Workflow file for this run

name: generator
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run script
run: |
python generator.py
- name: Push
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'This is an github action commit.'
name: lework
email: [email protected]
force-add: 'true'
force-push: 'true'