summaryrefslogtreecommitdiff
path: root/.github/workflows/reminders_check.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/reminders_check.yml')
-rw-r--r--.github/workflows/reminders_check.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/reminders_check.yml b/.github/workflows/reminders_check.yml
new file mode 100644
index 0000000000..eaaa909363
--- /dev/null
+++ b/.github/workflows/reminders_check.yml
@@ -0,0 +1,17 @@
+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