From c396f26f399f1d854985f073b4a225fc9b01f014 Mon Sep 17 00:00:00 2001 From: Marcus Fihlon Date: Sun, 1 Mar 2026 11:08:01 +0100 Subject: [PATCH] fix(workflows): run the bot only in the original repository Currently, the bot also runs in all forks and generates an error every day, which is sent to the owner of the fork via email. This is somewhat annoying. --- .github/workflows/reminder-bot-execution.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/reminder-bot-execution.yml b/.github/workflows/reminder-bot-execution.yml index dcda3b7..c2b3e42 100644 --- a/.github/workflows/reminder-bot-execution.yml +++ b/.github/workflows/reminder-bot-execution.yml @@ -8,6 +8,7 @@ on: jobs: run-bot: + if: github.repository_owner == 'hackergarten' runs-on: ubuntu-latest environment: reminder-bot-automation