Skip to content

Commit 5ae74cf

Browse files
committed
fix: auto-weekly-issue.yml 수정
1 parent 6166faf commit 5ae74cf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
5252
if (duplicate) {
5353
console.log(`⚠️ Issue already exists: ${duplicate.html_url}`);
54-
return 'skip';
54+
core.setOutput('should_create', 'false');
5555
} else {
5656
console.log(`✅ No duplicate found. Proceeding to create issue.`);
57-
return 'create';
57+
core.setOutput('should_create', 'true');
5858
}
5959
6060
- name: Create weekly issue
61-
if: steps.check.outputs.result == 'create'
61+
if: steps.check.outputs.should_create == 'true'
6262
uses: actions/github-script@v7
6363
with:
6464
script: |

0 commit comments

Comments
 (0)