40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: Cron Weekly
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "15 6 * * 0"
|
|
- cron: "55 23 * * 0"
|
|
workflow_dispatch:
|
|
jobs:
|
|
weekly:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@master
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.13"
|
|
cache: "pip" # caching pip dependencies
|
|
|
|
- name: Install Pip dependencies
|
|
run: pip install -r requirements.txt
|
|
|
|
- name: Generate Weekly
|
|
run: make weekly
|
|
|
|
- name: Commit to repository
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
COMMIT_MSG: |
|
|
👾Generate Weekly
|
|
skip-checks: true
|
|
run: |
|
|
git config user.email "git@fundor333.com"
|
|
git config user.name "fundor333"
|
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/fundor333/fundor333.github.io.git
|
|
git checkout main
|
|
git add .
|
|
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin main)
|