Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Didrichsen <[email protected]>
  • Loading branch information
gavindidrichsen committed Apr 23, 2024
1 parent 358a56d commit 3772ced
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/workflow-restarter-proxy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ runs:
shell: bash
run: |
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Authorization: token ${{ env.SOURCE_GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/actions/workflows/reusable-workflow-restart-failed-job.yml/dispatches \
https://api.github.com/repos/${{ inputs.repository }}/actions/workflows/workflow-restarter.yml/dispatches \
-d '{
"ref": "main",
"inputs": {
"repo": "${{ github.repository }}",
"run_id": "${{ github.run_id }}"
"repo": "${{ inputs.repository }}",
"run_id": "${{ inputs.run_id }}"
}
}'

0 comments on commit 3772ced

Please sign in to comment.