You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
576 B
21 lines
576 B
name: "Send comment to stale PRs"
|
|
on:
|
|
schedule:
|
|
# Run everyday at midnight
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
review-reminder:
|
|
permissions:
|
|
pull-requests: write
|
|
if: github.repository == 'roundcube/roundcubemail'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: sojusan/github-action-reminder@v1
|
|
with:
|
|
reminder_message: "🛎️ This PR has had no activity in two weeks."
|
|
# Remind after two weeks of inactivity
|
|
inactivity_deadline_hours: 336
|
|
default_users_to_notify: |
|
|
@pabzm
|
|
@alecpl
|