mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
2e92790525
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
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:
|
|
# Update README.md
|
|
- uses: milvus-io/hero-bot@1.11
|
|
with:
|
|
# Required
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
repos: 'milvus-io/milvus,bootcamp,community,docs,milvus-helm,milvus-sdk-go,milvus-sdk-java,milvus-sdk-node,milvus.io,pymilvus,pymilvus-orm'
|
|
target: 'milvus-io/milvus/README.md'
|
|
# Optional
|
|
isAscend: True
|
|
width: '30px'
|
|
customUserConfig: 'milvus-io/milvus/.contributors'
|
|
|
|
# Update README_CN.md
|
|
- uses: milvus-io/hero-bot@1.11
|
|
with:
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
repos: 'milvus-io/milvus,bootcamp,community,docs,milvus-helm,milvus-sdk-go,milvus-sdk-java,milvus-sdk-node,milvus.io,pymilvus,pymilvus-orm'
|
|
target: 'milvus-io/milvus/README_CN.md'
|
|
# Optional
|
|
isAscend: True
|
|
width: '30px'
|
|
customUserConfig: 'milvus-io/milvus/.contributors'
|
|
|
|
|
|
|