Skip to content

Commit

Permalink
feat(ci): add reminder bot
Browse files Browse the repository at this point in the history
- this can be useful for some issues that are blocked by mainstream to
  periodically ping on issues
- perfect for issue #302

Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Aug 5, 2024
1 parent f69338a commit 3d9f64f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/bot--reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
# Docs: https://github.com/agrc/create-reminder-action
name: 'reminder'

on:
schedule:
- cron: '0 0 * * *'
issue_comment:
types: [created, edited]

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Check for reminders
uses: agrc/create-reminder-action@v1

0 comments on commit 3d9f64f

Please sign in to comment.