Skip to content

Commit 7082df7

Browse files
committed
fix: update condition for remote manifest comparison in validate-flags workflow
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
1 parent 40d0d95 commit 7082df7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/validate-flags.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ jobs:
3232
run: cat flags.json && cat against-flags.json
3333

3434
- name: Compare against remote manifest
35-
if: ${{ secrets.FLAGD_STUDIO_TOKEN != '' }} # Secret not accessible for PRs from forks
35+
# Secret not accessible for PRs from forks
36+
if: github.repository == github.event.repository.full_name
3637
uses: open-feature/action@v0.0.2
3738
with:
3839
manifest: "flags.json"

0 commit comments

Comments
 (0)