remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/.github/workflows/pr-reminder.yml

24 lines
626 B

name: PRs reviews reminder
on:
schedule:
- cron: "0 8 * * 1-5"
4 weeks ago
- cron: '0 9 * * 1-5'
workflow_dispatch:
jobs:
pr-reviews-reminder:
runs-on: ubuntu-latest
steps:
4 weeks ago
- name: Reminder about PRs pending to review
if: github.event.schedule == '0 8 * * 1-5'
uses: Aniket-Engg/pr-reviews-reminder-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
freeze-date: '2024-11-04T18:00:00Z'
4 weeks ago
- name: Reminder for standup
if: github.event.schedule == '0 9 * * 1-5'
run: echo "This works."