Send review reminders #10
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
name: 'Send review reminders' | |
on: | |
schedule: | |
- cron: '30 1 * * 1,3,5' # Scheduled to run at 1:30 AM, Monday, Wednesday, Friday | |
workflow_dispatch: # Allows manual triggering of the workflow | |
jobs: | |
remind: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run PR reviewer reminder | |
uses: bcgov/aps-devops/pr-reminder@dev | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: "false" |