From 79e838d5f425fd161fd23f8a8e31938fa5b2bbb7 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Sat, 9 Dec 2023 12:13:54 -0800 Subject: Add check for SkyHanni repository ID in publish (#780) Add check for SkyHanni repository ID in publish #780 --- .github/workflows/generate-constants.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate-constants.yaml b/.github/workflows/generate-constants.yaml index 72fa1a89b..9df66081c 100644 --- a/.github/workflows/generate-constants.yaml +++ b/.github/workflows/generate-constants.yaml @@ -37,7 +37,8 @@ jobs: runs-on: ubuntu-latest needs: regexes name: "Publish regexes" - if: ${{ 'push' == github.event_name && 'beta' == github.ref_name }} + # 511310721 is the Repository ID for SkyHanni + if: ${{ 'push' == github.event_name && 'beta' == github.ref_name && '511310721' == github.repository_id }} steps: - uses: actions/checkout@v3 with: -- cgit