From 97bcadff0713e8dc7326d8e18bfca40e6079693b Mon Sep 17 00:00:00 2001 From: Huston Franklin Date: Tue, 16 Sep 2025 12:05:27 -0600 Subject: [PATCH] Add check for repository owner to build step in pipeline --- .github/workflows/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0ee5bff20..7fc8d8cd6 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -25,6 +25,7 @@ jobs: build: name: 'Build' runs-on: ubuntu-latest + if: github.repository_owner == 'rockcarver' steps: - name: Checkout repository uses: actions/checkout@v4