From: Pablo Zmdl Date: Mon, 25 Nov 2024 13:10:24 +0000 (+0100) Subject: Limit reminder-bots to our repo X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=65b37fb4c802c7579fc52d62daffc9b6846bee3a;p=roundcube-roundcubemail-docker.git Limit reminder-bots to our repo Previously these bots would work on all forks, too. Which is not a good default, in my eyes, but anyway here's a change that stops that. --- diff --git a/.github/workflows/bot-create-manual-reminder.yml b/.github/workflows/bot-create-manual-reminder.yml index 01677d9..73fd7e2 100644 --- a/.github/workflows/bot-create-manual-reminder.yml +++ b/.github/workflows/bot-create-manual-reminder.yml @@ -10,6 +10,7 @@ on: jobs: reminder: + if: github.repository == 'roundcube/roundcubemail-docker' runs-on: ubuntu-latest steps: diff --git a/.github/workflows/bot-manual-reminder.yml b/.github/workflows/bot-manual-reminder.yml index 0f17ae4..5b21572 100644 --- a/.github/workflows/bot-manual-reminder.yml +++ b/.github/workflows/bot-manual-reminder.yml @@ -10,6 +10,7 @@ permissions: jobs: reminder: + if: github.repository == 'roundcube/roundcubemail-docker' runs-on: ubuntu-latest steps: diff --git a/.github/workflows/bot-remind-stale-pull-requests.yml b/.github/workflows/bot-remind-stale-pull-requests.yml index b8846c2..e96c59c 100644 --- a/.github/workflows/bot-remind-stale-pull-requests.yml +++ b/.github/workflows/bot-remind-stale-pull-requests.yml @@ -6,6 +6,7 @@ on: jobs: review-reminder: + if: github.repository == 'roundcube/roundcubemail-docker' runs-on: ubuntu-latest steps: - uses: sojusan/github-action-reminder@v1