- Notifications
You must be signed in to change notification settings - Fork7.7k
Process reminders#103556
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:'Process reminders' | |
on: | |
schedule: | |
-cron:'*/15 * * * *' | |
workflow_dispatch: | |
permissions: | |
contents:read | |
jobs: | |
reminder: | |
if:github.repository_owner == 'PowerShell' | |
permissions: | |
issues:write# for agrc/reminder-action to set reminders on issues | |
pull-requests:write# for agrc/reminder-action to set reminders on PRs | |
runs-on:ubuntu-latest | |
steps: | |
-name:check reminders and notify | |
uses:agrc/reminder-action@c0ccba185490ad2c0f1de824d625f71d705a6312# v1.0.17 |