Weekly Github Review Stats of Scheduling Team #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weekly Github Review Stats of Scheduling Team | |
on: | |
schedule: | |
# UTC+8 14:00 on Friday. | |
- cron: "0 6 * * 5" | |
workflow_dispatch: | |
jobs: | |
review-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: "1.21.0" | |
- run: | | |
make run-weekly-check-test | |
env: | |
GHSTATS_GITHUB_TOKEN: ${{ secrets.GHSTATS_GITHUB_TOKEN }} | |
GHSTATS_FEISHU_WEBHOOK_TOKEN: ${{ secrets.GHSTATS_FEISHU_WEBHOOK_TOKEN }} |