-
Notifications
You must be signed in to change notification settings - Fork 254
40 lines (37 loc) · 1.34 KB
/
all_contributors.yml
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
31
32
33
34
35
36
37
38
39
40
name: all-contributors
on:
schedule:
# * is a special character in YAML so you have to quote this string
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
- cron: "* 0 * * *"
jobs:
contributor:
runs-on: ubuntu-latest
steps:
- name: Update README
uses: milvus-io/hero-bot@1.11
with:
# Required
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: "towhee-io/towhee,examples"
target: "towhee-io/towhee/README.md"
# Optional
isAscend: True
width: "30px"
- name: Update README_CN
uses: milvus-io/hero-bot@1.11
with:
# Required
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
repos: "towhee-io/towhee,examples"
target: "towhee-io/towhee/README_CN.md"
# Optional
isAscend: True
width: "30px"