From d3dded0d29c0c87819184aedc232bec6934662af Mon Sep 17 00:00:00 2001 From: SuzukaHori Date: Tue, 5 Mar 2024 09:40:57 +0900 Subject: [PATCH] =?UTF-8?q?Fjord=20Choice=E3=81=AE=E3=83=AF=E3=83=BC?= =?UTF-8?q?=E3=82=AF=E3=83=95=E3=83=AD=E3=83=BC=E3=81=AB-f=E3=82=AA?= =?UTF-8?q?=E3=83=97=E3=82=B7=E3=83=A7=E3=83=B3=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/post-issue-event.yml | 2 +- .github/workflows/post-pr-event.yml | 2 +- .github/workflows/update_only_when_reviewer_approved.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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) }},