Skip to content

Commit

Permalink
feat(ci): add 2nd part to reminder bot
Browse files Browse the repository at this point in the history
- in the first PR I forgot that the reminder bot consists of two
  separate parts
- 1st part creates the label and metadata on issue creation
- 2nd part runs on schedule and checks labeled issues

Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Sep 27, 2024
1 parent 8a85b80 commit 5743166
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/bot--reminder-schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# Docs: https://github.com/agrc/reminder-action
# create-reminder-action cannot be scheduled
# for scheduled runs this is needed
name: 'reminder-schedule'

on:
schedule:
- cron: '0 * * * *'

permissions:
issues: write
pull-requests: write

jobs:
reminder-schedule:
runs-on: ubuntu-latest
steps:
- name: check reminders and notify
uses: agrc/reminder-action@v1

0 comments on commit 5743166

Please sign in to comment.