@@ -299,6 +299,9 @@ jobs:
299299 echo "Test file 3 - $(date +%s)" > file3.json
300300 echo "Test file 4 - $(date +%s)" > file4.txt
301301
302+ # 디렉토리 내용 확인
303+ ls -la
304+ cd ../..
302305
303306 - name : Test Commit with Multiple File Pattern (space separated)
304307 uses : ./
@@ -307,8 +310,8 @@ jobs:
307310 user_name : GitHub Actions
308311 commit_message : " test: commit multiple files with space-separated pattern"
309312 branch : test
310- repository_path : .
311- file_pattern : " test/multi-pattern/* .txt test/multi-pattern/* .md"
313+ repository_path : " ./test/multi-pattern "
314+ file_pattern : " file1 .txt file2 .md"
312315
313316 - name : Verify Files Added
314317 run : |
@@ -330,8 +333,8 @@ jobs:
330333 user_name : GitHub Actions
331334 commit_message : " test: commit JSON file with separate pattern"
332335 branch : test
333- repository_path : .
334- file_pattern : " test/multi-pattern/* .json test/multi-pattern/ file4.txt"
336+ repository_path : " ./test/multi-pattern "
337+ file_pattern : " file3 .json file4.txt"
335338
336339 - name : Verify Second Pattern
337340 run : |
@@ -381,8 +384,8 @@ jobs:
381384 pr_base : main
382385 pr_branch : test
383386 pr_labels : " test,automated,dry-run-test"
384- repository_path : .
385- file_pattern : test/ pr-dry-run-test.txt
387+ repository_path : " ./test "
388+ file_pattern : " pr-dry-run-test.txt"
386389 github_token : ${{ secrets.PAT_TOKEN }}
387390 pr_dry_run : true
388391
@@ -396,7 +399,7 @@ jobs:
396399 auto_branch : true
397400 pr_base : main
398401 pr_labels : " test,automated,dry-run-test-auto-branch"
399- repository_path : .
400- file_pattern : test/ pr-dry-run-test.txt
402+ repository_path : " ./test "
403+ file_pattern : " pr-dry-run-test.txt"
401404 github_token : ${{ secrets.PAT_TOKEN }}
402405 pr_dry_run : true
0 commit comments