Daily Github Review Stats of Scheduling Team #215
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: Daily Github Review Stats of Scheduling Team | |
on: | |
schedule: | |
# UTC+8 18:00 on every day-of-week from Monday to Thursday. | |
- cron: "0 10 * * 1-4" | |
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-daily-review | |
env: | |
GHSTATS_GITHUB_TOKEN: ${{ secrets.GHSTATS_GITHUB_TOKEN }} | |
GHSTATS_FEISHU_WEBHOOK_TOKEN: ${{ secrets.GHSTATS_FEISHU_WEBHOOK_TOKEN }} |