-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds workflow to post eod activities to slack channel
- Loading branch information
1 parent
7096e29
commit 4dd60d3
Showing
2 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Post EOD Messages to Slack Channel | ||
|
||
on: | ||
schedule: | ||
- cron: "00 14 * * *" # 19:30 IST | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-slack-eod-reminder: | ||
uses: coronasafe/leaderboard/.github/workflows/post-activities-updates.yaml | ||
if: github.ref == 'refs/heads/main' | ||
permissions: | ||
issues: read | ||
pull-requests: read | ||
with: | ||
LEADERBOARD_URL: https://contributors.ohc.network | ||
secrets: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
LEADERBOARD_API_KEY: ${{ secrets.LEADERBOARD_API_KEY }} | ||
SLACK_EOD_BOT_CHANNEL: ${{ vars.SLACK_EOD_BOT_CHANNEL }} | ||
SLACK_EOD_BOT_TOKEN: ${{ secrets.SLACK_EOD_BOT_TOKEN }} |
This file was deleted.
Oops, something went wrong.