From b0fdea187317fd041749428421aca6d28f454862 Mon Sep 17 00:00:00 2001
From: Marc Fehling <mafehling.git@gmail.com>
Date: Sun, 9 Jul 2023 06:31:23 +0200
Subject: [PATCH] Limit report of CI failures to main repository.

---
 .github/workflows/linux.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index ff8699f..78a70be 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -74,7 +74,7 @@ jobs:
           numdiff solution-10.vtk test_data/reference-10.vtk
 
       - name: Create issue about failure
-        if: ${{ failure() && (github.event_name == 'schedule') }}
+        if: ${{ failure() && (github.event_name == 'schedule') && (github.repository_owner == 'dealii') }}
         uses: JasonEtco/create-an-issue@v2.9.1
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-- 
2.39.5