Skip to content

Commit

Permalink
fix: approve 수 비교를 문자열이 아닌 number로 하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hjy0951 committed Jul 9, 2024
1 parent 9dd42d2 commit cc8cd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/review-status-labeling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
console.log(labelNameList);
console.log(${{ steps.count_approvals.outputs.result }});
if (${{ steps.count_approvals.outputs.result }} === '0') {
if (${{ steps.count_approvals.outputs.result }} === 0) {
if (labelNameList.includes('Approved 🆗') === true) {
console.log(1);
await github.rest.issues.removeLabel({
Expand Down

0 comments on commit cc8cd3c

Please sign in to comment.