issues-dailyclose-schedule #16
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
# 国际标准时间+8 | |
# 每天issue和pr的关闭情况 | |
name: issues-dailyclose-schedule | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
create-report: | |
# prevents this action from running on forks | |
if: github.repository == 'Tencent/tdesign' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: TDesignOteam/create-report@main | |
with: | |
wxhook: ${{ secrets.WX_HOOK_URL }} | |
token: ${{ secrets.GIT_TOKEN_L }} | |
type: 'close' |