send-weekly-dashboard #104
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: send-weekly-dashboard | |
| on: | |
| schedule: | |
| - cron: "20 2 * * 1" # μμμΌ νκ΅μκ° μ€μ 11μ 20λΆ | |
| workflow_dispatch: | |
| jobs: | |
| cron: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.3 | |
| # cron jobμ μ€νν©λλ€. | |
| - name: run script | |
| run: | | |
| bun install | |
| SLACK_WEEKLY_CHANNEL_ID=C0AFK27FVRS \ | |
| SLACK_AUTH_TOKEN=${{ secrets.SLACK_AUTH_TOKEN }} \ | |
| GHP_ACCESS_TOKEN=${{ secrets.GHP_ACCESS_TOKEN }} \ | |
| GITHUB_ORGANIZATION=wafflestudio \ | |
| MONGODB_URI="${{ secrets.MONGODB_URI }}" \ | |
| bun send:weekly-dashboard |