CorePing - Core PR Review Reminder #9369
This file contains hidden or 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: "CorePing - Core PR Review Reminder" | |
| on: | |
| # Runs per 5min to update core prs status | |
| schedule: | |
| - cron: "*/5 * * * *" | |
| workflow_dispatch: | |
| # push: | |
| # branches: | |
| # - main | |
| # paths: | |
| # - ".github/workflows/coreping.yaml" | |
| # - "app/tasks/coreping/**" | |
| jobs: | |
| run_coreping: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| # Install dependencies | |
| - run: bun i | |
| # Run CorePing task | |
| - run: bun app/tasks/coreping/coreping.ts | |
| timeout-minutes: 8 | |
| env: | |
| GH_TOKEN_COMFY_PR: ${{ secrets.GH_TOKEN_COMFY_PR_BOT }} | |
| MONGODB_URI: ${{ secrets.MONGODB_URI }} | |
| SLACK_BOT_CHANNEL: ${{ secrets.SLACK_BOT_CHANNEL }} | |
| SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |