We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c64687 commit c198fe1Copy full SHA for c198fe1
1 file changed
.github/workflows/ci.yml
@@ -366,18 +366,8 @@ jobs:
366
git config --global user.name "GitHub Actions"
367
368
- name: Create Test File for PR
369
- run: |
370
- # 테스트 브랜치가 없으면 생성
371
- if ! git rev-parse --verify test &>/dev/null; then
372
- git checkout -b test
373
- else
374
- git checkout test
375
- fi
376
-
+ run: |
377
echo "Test file for PR dry run - $(date +%s)" > test/pr-dry-run-test.txt
378
- git add test/pr-dry-run-test.txt
379
- git commit -m "Add test file for PR dry run"
380
- git push origin test
381
382
- name: Test PR Dry Run (auto_branch false)
383
uses: ./
0 commit comments