8000 Automated update by github action · hantang/rime-list@58489af · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update Docs

Update Docs #65

Workflow file for this run

name: Update Docs
on:
push:
branches:
- main
paths:
- data.tsv
- '**.py'
schedule:
- cron: "0 10 * * 1"
jobs:
process:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
# - run: pip install -r requirements.txt
- name: Run Python scripts
env:
TOKEN: ${{ secrets.GH_TOKEN }}
run: bash run.sh
- name: Git auto commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_user_name: "github-actions[bot]"
commit_user_email: "41898282+github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
commit_message: Automated update by github action
# commit_options: '--no-verify --signoff'
file_pattern: "data.tsv README.md"
0