ユーザー情報に、主な学習時間を登録できるように、同じ時間に学習している人を見れるようにしたい。 #2034
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
issues: | |
types: [assigned, unassigned, labeled, unlabeled] | |
jobs: | |
post_issue_event: | |
runs-on: ubuntu-latest | |
steps: | |
- name: post assigned issue event | |
run: | | |
curl -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 }}, | |
"point": ${{ toJson(github.event.issue.labels.*.name) }}, | |
"assignee_uids": ${{ toJson(github.event.issue.assignees.*.id) }} | |
}' |