forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 1.34 KB
/
pending-review-notification.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Send pending review notifications to reviewer on github-discussion
on:
schedule:
# Every Tuesday and Thursday at 16:00 UTC.
- cron: '0 16 * * 2,4'
# GitHub doesn't provide assurance that the scheduled jobs will run on time
# (see https://github.community/t/no-assurance-on-scheduled-jobs/133753).
# So, we add the workflow_dispatch event here to allow triggering this
# workflow manually if needed.
workflow_dispatch:
jobs:
send_notifications:
name: Send pending review notifications
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8.15'
architecture: 'x64'
# SHA1 hash of the develop commit.
- uses: oppia/stale-review-request-notifier@9765c6aac4a37f69cdb2a4ad0078b722d2364b3d
with:
category-name: Notify\ Reviewers
discussion-title: Pending\ Reviews
repo-token: ${{ secrets.DISCUSSION_NOTIFICATION_TOKEN }}
review-turnaround-hours: 48
- name: Report if failed
if: ${{ failure() }}
uses: ./.github/actions/send-webhook-notification
with:
message: "A pending-review-notification workflow failed."
webhook-url: ${{ secrets.BUILD_FAILURE_ROOM_WEBHOOK_URL }}