Skip to content

Commit

Permalink
Merge pull request #484 from Schrodinger-Hat/feature/reminders
Browse files Browse the repository at this point in the history
feat(workflows): add the reminder action
  • Loading branch information
Wabri authored Feb 23, 2024
2 parents e44b846 + 8dde21c commit ac071fc
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/reminder-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'check reminders'

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

permissions:
issues: write

jobs:
reminder:
runs-on: ubuntu-latest

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

permissions:
issues: write

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 ac071fc

Please sign in to comment.