diff --git a/.github/workflows/post-issue-event.yml b/.github/workflows/post-issue-event.yml index 8f6f3f2e385..126a3d758e7 100644 --- a/.github/workflows/post-issue-event.yml +++ b/.github/workflows/post-issue-event.yml @@ -8,7 +8,7 @@ jobs: steps: - name: post assigned issue event run: | - curl -X POST https://fjord-choice.herokuapp.com/api/issues \ + curl -f -X POST https://fjord-choice.herokuapp.com/api/issues \ -H 'Content-Type: application/json' \ -H 'Authorization: Token ${{ secrets.FJORD_CHOICE_TOKEN }}' \ -d '{"number": ${{ github.event.issue.number }}, diff --git a/.github/workflows/post-pr-event.yml b/.github/workflows/post-pr-event.yml index 0a2a41e3e9b..2a90a6d48ef 100644 --- a/.github/workflows/post-pr-event.yml +++ b/.github/workflows/post-pr-event.yml @@ -8,7 +8,7 @@ jobs: steps: - name: post review requested pr event run: | - curl -X POST https://fjord-choice.herokuapp.com/api/pulls \ + curl -f -X POST https://fjord-choice.herokuapp.com/api/pulls \ -H 'Content-Type: application/json' \ -H 'Authorization: Token ${{ secrets.FJORD_CHOICE_TOKEN }}' \ -d '{"title": ${{ toJson(github.event.pull_request.title) }}, diff --git a/.github/workflows/update_only_when_reviewer_approved.yml b/.github/workflows/update_only_when_reviewer_approved.yml index a0629b49669..19f9ba48a42 100644 --- a/.github/workflows/update_only_when_reviewer_approved.yml +++ b/.github/workflows/update_only_when_reviewer_approved.yml @@ -9,7 +9,7 @@ jobs: steps: - name: post approved pr event run: | - curl -X POST https://fjord-choice.herokuapp.com/api/pulls \ + curl -f -X POST https://fjord-choice.herokuapp.com/api/pulls \ -H 'Content-Type: application/json' \ -H 'Authorization: Token ${{ secrets.FJORD_CHOICE_TOKEN }}' \ -d '{"title": ${{ toJson(github.event.pull_request.title) }},