Skip to content

Commit

Permalink
[Actions] DO not double quote a already quoted string. (#13926)
Browse files Browse the repository at this point in the history
* Revert "[Actions] Message does not need quotes since it is already quoted. (#13925)"

This reverts commit 91f0577.

* [Actions] DO not double quote a already quoted string.
  • Loading branch information
mandel-macaque authored Mar 14, 2023
1 parent ebc990b commit 7c79367
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/sdk-insertion-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,7 @@ jobs:
token: ${{ secrets.MEGAPIPELINE_PAT }}
event-type: 'sdk_insertion'
repository: 'xamarin/sdk-insertions'
client-payload:
repository: "dotnet/maui"
branch: ${{ inputs.branch }
commit: ${{ inputs.commit }}
commit_message: ${{ inputs.commit_title }}
client-payload: '{"repository": "dotnet/maui", "branch": "${{ inputs.branch }}", "commit": "${{ inputs.commit }}", "commit_message": "${{ inputs.commit_title }}"}'

# if push event

Expand All @@ -69,10 +65,6 @@ jobs:
token: ${{ secrets.MEGAPIPELINE_PAT }}
event-type: 'sdk_insertion'
repository: 'xamarin/sdk-insertions'
client-payload:
repository: "dotnet/maui"
branch: ${{ github.ref_name }}
commit: ${{ github.sha }}
commit_message: ${{ steps.commit_title.outputs.COMMIT_TITLE }}
client-payload: '{"repository": "dotnet/maui", "branch": "${{ github.ref_name }}", "commit": "${{ github.sha }}", "commit_message": ${{ steps.commit_title.outputs.COMMIT_TITLE }} }'


0 comments on commit 7c79367

Please sign in to comment.