Skip to content

Commit

Permalink
👷 Add reminder actions
Browse files Browse the repository at this point in the history
  • Loading branch information
iqfareez committed Aug 2, 2023
1 parent 662a220 commit 92d2b02
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check_remimders.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "check reminders"

on:
schedule:
- cron: "0 * * * *"

jobs:
reminder:
runs-on: ubuntu-latest

steps:
- name: check reminders and notify
uses: agrc/reminder-action@v1
13 changes: 13 additions & 0 deletions .github/workflows/create_reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "create reminder"

on:
issue_comment:
types: [created, edited]

jobs:
reminder:
runs-on: ubuntu-latest

steps:
- name: check for reminder
uses: agrc/create-reminder-action@v1

0 comments on commit 92d2b02

Please sign in to comment.