Skip to content

Commit

Permalink
Update size-label.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrivedi88 authored Jun 26, 2023
1 parent 88aa257 commit 7efb1a7
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .github/workflows/size-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,39 @@ jobs:
- name: Add label
run: |
if [ $size -gt 100 ]; then
echo "Adding size: L"
echo "Adding size: XXL"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
-d '["size: XXL"]'
elif [ $size -gt 50 ]; then
echo "Adding size: XL"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
--data '["size: L"]'
-d '["size: XL"]'
elif [ $size -gt 30 ]; then
echo "Adding size: L"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
-d '["size: L"]'
elif [ $size -gt 10 ]; then
echo "Adding size: M"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
--data '["size: M"]'
else
-d '["size: M"]'
elif [ $size -gt 5 ]; then
echo "Adding size: S"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
--data '["size: S"]'
-d '["size: S"]'
else
echo "Adding size: XS"
curl -X POST -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/labels \
-d '["size: XS"]'
fi

0 comments on commit 7efb1a7

Please sign in to comment.