Skip to content

Commit baf8e0f

Browse files
committed
fix: create-weekly-issue.yml 수정
1 parent eb70fad commit baf8e0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/create-weekly-issue.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
if (duplicate) {
4747
console.log(`⚠️ Issue already exists: ${duplicate.html_url}`);
4848
core.setFailed(`중복된 이슈가 이미 존재합니다: ${duplicate.html_url}`);
49-
return 'skip';
49+
core.setOutput('should_create', 'false');
5050
} else {
5151
console.log(`✅ No duplicate found. Proceeding to create issue.`);
52-
return 'create';
52+
core.setOutput('should_create', 'true');
5353
}
5454
5555
- name: Create weekly issue
56-
if: steps.check.outputs.result == 'create'
56+
if: steps.check.outputs.should_create == 'true'
5757
uses: actions/github-script@v7
5858
with:
5959
script: |

0 commit comments

Comments
 (0)