Skip to content

Commit 2b5f4c6

Browse files
committed
feat(ci): add reminder bot
- 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 <vojtech.vesely@9elements.com>
1 parent 2b42c43 commit 2b5f4c6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/bot--reminder.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
# Docs: https://github.com/agrc/create-reminder-action
3+
name: 'reminder'
4+
5+
on:
6+
schedule:
7+
- cron: '0 0 * * *'
8+
issue_comment:
9+
types: [created, edited]
10+
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
jobs:
16+
stale:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Check for reminders
20+
uses: agrc/create-reminder-action@v1

0 commit comments

Comments
 (0)