Browse Source
Merge pull request #9714 from roundcube/reminder-bots-only-our-repo
pull/9720/head
Pablo Zmdl
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
5 additions and
1 deletions
-
.github/workflows/bot-create-manual-reminder.yml
-
.github/workflows/bot-manual-reminder.yml
-
.github/workflows/bot-remind-stale-pull-requests.yml
|
|
@ -10,6 +10,7 @@ on: |
|
|
|
|
|
|
|
jobs: |
|
|
|
reminder: |
|
|
|
if: github.repository == 'roundcube/roundcubemail' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
@ -10,6 +10,7 @@ permissions: |
|
|
|
|
|
|
|
jobs: |
|
|
|
reminder: |
|
|
|
if: github.repository == 'roundcube/roundcubemail' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
@ -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 |
|
|
|