summaryrefslogtreecommitdiff
path: root/.github/workflows/reminders_create.yml
blob: f92320bcc2e75e7532d0fc290328768ab9b766b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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