Skip to content

Commit

Permalink
Setup a bot that notifies on manually set reminders
Browse files Browse the repository at this point in the history
  • Loading branch information
pabzm committed Nov 20, 2024
1 parent 5a189c4 commit 545cf4c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/bot-create-manual-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Create reminder from comment'

permissions:
issues: write
pull-requests: write

on:
issue_comment:
types: [created, edited]

jobs:
reminder:
runs-on: ubuntu-latest

steps:
- name: 👀 check for reminder
uses: agrc/create-reminder-action@v1
17 changes: 17 additions & 0 deletions .github/workflows/bot-manual-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Notify manually requested reminders'

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

permissions:
issues: write
pull-requests: write

jobs:
reminder:
runs-on: ubuntu-latest

steps:
- name: check reminders and notify
uses: agrc/reminder-action@v1

0 comments on commit 545cf4c

Please sign in to comment.