Skip to content

Commit

Permalink
fix: optional --commit flag (#339)
Browse files Browse the repository at this point in the history
init
  • Loading branch information
Aslemammad authored Nov 28, 2024
1 parent 6adc524 commit cd992a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
pnpm tsx ecosystem-ci.ts
--branch ${{ inputs.branchName }}
--repo ${{ inputs.repo }}
--commit ${{ inputs.commit }}
${{ inputs.commit && '--commit ' + inputs.commit }}
${{ inputs.suite }}
- id: get-ref
if: always()
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
pnpm tsx ecosystem-ci.ts
--branch ${{ inputs.branchName }}
--repo ${{ inputs.repo }}
--commit ${{ inputs.commit }}
${{ inputs.commit && '--commit ' + inputs.commit }}
${{ matrix.suite }}
- id: get-ref
if: always()
Expand Down

0 comments on commit cd992a8

Please sign in to comment.