Skip to content

Commit

Permalink
Fjord Choiceのワークフローに-fオプションを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
SuzukaHori committed Mar 5, 2024
1 parent a8cb148 commit d3dded0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/post-issue-event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-pr-event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_only_when_reviewer_approved.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }},
Expand Down

0 comments on commit d3dded0

Please sign in to comment.