FMHYedit/.github/workflows/single-page.yml

36 lines
718 B
YAML
Raw Normal View History

2023-04-09 16:30:28 +00:00
name: Update Single Page
on:
workflow_dispatch:
schedule:
2023-10-27 02:34:41 +05:30
- cron: "0 */2 * * *"
2023-04-09 16:30:28 +00:00
jobs:
update:
name: Update Single Page
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
2023-10-27 02:34:41 +05:30
python-version: "3.10"
2023-04-09 16:30:28 +00:00
2023-06-04 00:32:00 +05:30
- name: Configure Git
run: |
git config user.name "taskylizard"
git config user.email "75871323+taskylizard@users.noreply.github.com"
- name: Update
shell: bash
run: |
python .github/single-page.py
git add .
git commit -m '♻️ update single page'
git push