-
Notifications
You must be signed in to change notification settings - Fork 6
31 lines (30 loc) · 845 Bytes
/
auto_gen_md.yml
File metadata and controls
31 lines (30 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: auto gen md
on:
workflow_dispatch:
schedule:
- cron: '20 20 * * *'
jobs:
auto-gen-md:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: update js func md
run: |
bash ".github/workflows/shell/gen_js_func_md.sh"
- name: update icon md
run: |
bash ".github/workflows/shell/gen_icon_md.sh"
- name: update color md
run: |
bash ".github/workflows/shell/gen_color_icon_md.sh"
- name: Count download
run: |
bash ".github/workflows/shell/count_download.sh"
- name: Update thanks image
run: |
bash ".github/workflows/shell/gen_thanks_images.sh"
- name: Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5