Browse Source

Merge pull request #9714 from roundcube/reminder-bots-only-our-repo

pull/9720/head
Pablo Zmdl 8 months ago
committed by GitHub
parent
commit
3a6e25a5b3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/bot-create-manual-reminder.yml
  2. 1
      .github/workflows/bot-manual-reminder.yml
  3. 4
      .github/workflows/bot-remind-stale-pull-requests.yml

1
.github/workflows/bot-create-manual-reminder.yml

@ -10,6 +10,7 @@ on:
jobs:
reminder:
if: github.repository == 'roundcube/roundcubemail'
runs-on: ubuntu-latest
steps:

1
.github/workflows/bot-manual-reminder.yml

@ -10,6 +10,7 @@ permissions:
jobs:
reminder:
if: github.repository == 'roundcube/roundcubemail'
runs-on: ubuntu-latest
steps:

4
.github/workflows/bot-remind-stale-pull-requests.yml

@ -6,11 +6,13 @@ on:
jobs:
review-reminder:
permissions:
pull-requests: write
if: github.repository == 'roundcube/roundcubemail'
runs-on: ubuntu-latest
steps:
- uses: sojusan/github-action-reminder@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reminder_message: "🛎️ This PR has had no activity in two weeks."
# Remind after two weeks of inactivity
inactivity_deadline_hours: 336

Loading…
Cancel
Save