Skip to content

Commit

Permalink
Fix reproduction check not working outside pull requests (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikmaeckel authored Nov 5, 2024
1 parent b6da6d8 commit b92cd17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analyze-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ jobs:
-F token=$REPRODUCTION_RUNNER_TRIGGER_TOKEN \
-F ref=main \
-F variables[TARGET_BRANCH]=${{ github.head_ref || github.ref_name }} \
-F variables[IS_DRAFT]=${{ github.event.pull_request.draft }} \
-F variables[TARGET_SHA]=${{ github.event.pull_request.head.sha }} \
-F variables[IS_DRAFT]=${{ github.event.pull_request.draft || false }} \
-F variables[TARGET_SHA]=${{ github.event.pull_request.head.sha || github.sha }} \
-s -o /dev/null \
$REPRODUCTION_RUNNER_URL
env:
Expand Down

0 comments on commit b92cd17

Please sign in to comment.