From f3913b22776d841aeb973a5d51b2c4f04b44672e Mon Sep 17 00:00:00 2001 From: Mike Williams <102263964+mikewilli@users.noreply.github.com> Date: Wed, 1 Nov 2023 14:45:33 -0400 Subject: [PATCH] fix #9652 feat(nimbus): only run probe-scraper gh action on this repo (#9653) Because - We don't need to run the probe-scraper github action on forks This commit - checks the repo before running the action --- .github/workflows/glean-probe-scraper.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/glean-probe-scraper.yml b/.github/workflows/glean-probe-scraper.yml index 0038e6cbd..b5b48e610 100644 --- a/.github/workflows/glean-probe-scraper.yml +++ b/.github/workflows/glean-probe-scraper.yml @@ -3,4 +3,5 @@ name: Glean probe-scraper on: [push, pull_request] jobs: glean-probe-scraper: + if: github.repository == 'mozilla/experimenter' uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main