Skip to content

Commit 64ec6e9

Browse files
authored
Merge pull request #685 from eric-hjh/main
테스트 정상화 및 수동 트리거 로직 추가
2 parents 2a68466 + eec855e commit 64ec6e9

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

.github/workflows/merge-and-generate-problems.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ jobs:
3535
- name: Merge All Open PRs
3636
id: merge-prs
3737
run: |
38+
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
39+
echo "Manual trigger detected. Forcing pr_found=true"
40+
echo "pr_found=true" >> $GITHUB_ENV
41+
exit 0
42+
fi
43+
3844
PR_LIST=$(gh pr list --state open --json number -q '.[].number')
3945
4046
if [ -n "$PR_LIST" ]; then

live10/test105/문제1/.gitkeep

Whitespace-only changes.

live10/test105/문제2/.gitkeep

Whitespace-only changes.

live10/test105/문제3/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)