diff options
author | Walker Selby <git@walkerselby.com> | 2023-12-09 12:13:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-09 21:13:54 +0100 |
commit | 79e838d5f425fd161fd23f8a8e31938fa5b2bbb7 (patch) | |
tree | 2cfd0d587199210548c08d46f6d4bb985d41debd /.github/workflows | |
parent | e13a702f12a5b39fb1133972bef0d9ada1572315 (diff) | |
download | skyhanni-79e838d5f425fd161fd23f8a8e31938fa5b2bbb7.tar.gz skyhanni-79e838d5f425fd161fd23f8a8e31938fa5b2bbb7.tar.bz2 skyhanni-79e838d5f425fd161fd23f8a8e31938fa5b2bbb7.zip |
Add check for SkyHanni repository ID in publish (#780)
Add check for SkyHanni repository ID in publish #780
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/generate-constants.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
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: |