Skip to content

Commit

Permalink
Added GitHub Actions to create and check for reminders in pull requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
nessita authored Feb 22, 2024
1 parent f835787 commit 1fd57f2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/reminders_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Check reminders

on:
schedule:
- cron: '0 * * * *' # At the start of every hour
workflow_dispatch:

permissions:
contents: read
pull-requests: write

jobs:
reminders:
runs-on: ubuntu-latest
steps:
- name: Check reminders and notify users
uses: agrc/reminder-action@v1
17 changes: 17 additions & 0 deletions .github/workflows/reminders_create.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Create reminders

on:
issue_comment:
types: [created, edited]
workflow_dispatch:

permissions:
contents: read
pull-requests: write

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

0 comments on commit 1fd57f2

Please sign in to comment.