mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
28 lines
800 B
YAML
28 lines
800 B
YAML
name: all-contributors
|
|
|
|
on:
|
|
schedule:
|
|
# * is a special character in YAML so you have to quote this string
|
|
- cron: '10 9 * * *'
|
|
|
|
jobs:
|
|
contributor:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Update README.md
|
|
- uses: milvus-io/hero-bot@1.4
|
|
with:
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
repos: 'milvus-io/milvus,milvus-helm,bootcamp,milvus.io,milvus-sdk-java,pymilvus'
|
|
targetRepo: 'milvus-io/milvus'
|
|
filePath: 'README.md'
|
|
|
|
# Update README_CN.md
|
|
- uses: milvus-io/hero-bot@1.4
|
|
with:
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
repos: 'milvus-io/milvus,milvus-helm,bootcamp,milvus.io,milvus-sdk-java,pymilvus'
|
|
targetRepo: 'milvus-io/milvus'
|
|
filePath: 'README_CN.md'
|
|
|