mirror of
https://github.com/django/django.git
synced 2024-11-25 16:09:27 +01:00
18 lines
311 B
YAML
18 lines
311 B
YAML
name: Check reminders
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *' # At the start of every hour
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
reminders:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check reminders and notify users
|
|
uses: agrc/reminder-action@v1
|