Skip to content

Commit

Permalink
[.github] - fix: correct owner interpolation in dispatch event (#8677)
Browse files Browse the repository at this point in the history
- Ensure the 'owner' field in dispatchEvent uses proper string interpolation for the GitHub repository owner value
  • Loading branch information
JulesBelveze authored Nov 15, 2024
1 parent 44b13ed commit 08a0fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-connectors-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
await github.rest.repos.createDispatchEvent({
owner: ${{ github.repository_owner }},
owner: '${{ github.repository_owner }}',
repo: 'dust-infra',
event_type: 'trigger-component-deploy',
client_payload: {
Expand Down

0 comments on commit 08a0fc9

Please sign in to comment.