Skip to content

Commit d66af81

Browse files
authored
Fix regression in tag-job in test-target when running on forks (DataDog#22425)
1 parent 645e70c commit d66af81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183

184184
- name: Tag job for CI Visibility
185185
# Skip on fork PRs and non-core repos since secrets won't be available
186-
if: env.INPUT_IS_FORK != 'true' || env.INPUT_REPO == 'core'
186+
if: env.INPUT_IS_FORK != 'true' && env.INPUT_REPO == 'core'
187187
uses: ./.github/actions/tag-job
188188
with:
189189
tags: ${{ env.DD_TAGS }}

0 commit comments

Comments
 (0)