Skip to content

Commit

Permalink
fix: optional commit unexpected symbol (#340)
Browse files Browse the repository at this point in the history
init
  • Loading branch information
Aslemammad authored Nov 29, 2024
1 parent cd992a8 commit 1f625ae
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 }}
${{ inputs.commit && '--commit ' + inputs.commit }}
${{ inputs.commit && format('--commit {0}', 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 }}
${{ inputs.commit && '--commit ' + inputs.commit }}
${{ inputs.commit && format('--commit {0}', inputs.commit) }}
${{ matrix.suite }}
- id: get-ref
if: always()
Expand Down

0 comments on commit 1f625ae

Please sign in to comment.