Skip to content

Daily Job(special)

Daily Job(special) #3

Workflow file for this run

name: 'Daily Job(special)'
on:
schedule:
- cron: '30 23 * * *' # UTC
workflow_dispatch:
inputs:
environment:
description: 'Daily Job(special)'
required: true
default: 'production'
jobs:
run_job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run Python script
run: python assets/special/special.py
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add assets/special/special.txt
git commit -m ":tv: (special)AutoUpdate $(date -d "+8 hours" +'%Y%m%d')"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}