[Fix/#194] 선호시간 선택 후 POST시 response 값에 따라 처리 수정 #186
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
name: size-label | |
on: pull_request_target | |
jobs: | |
size-label: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: size-label | |
uses: "pascalgn/size-label-action@v0.4.2" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
IGNORED: ".*\n!.gitignore\nyarn.lock\ngenerated/**\npackage-lock.json\n*.lock\n.gitignore" | |
with: | |
sizes: > | |
{ | |
"0": "XS", | |
"10": "S", | |
"100": "M", | |
"500": "L", | |
"1000": "XL", | |
"2000": "XXL" | |
} |