From b1bbd22155c0c241398a5fffea68b6a99bc93c2b Mon Sep 17 00:00:00 2001 From: Naoki Oketani Date: Mon, 5 May 2025 12:06:23 +0000 Subject: [PATCH] fix(workflow): remove trailing slash from working_directory path --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c350abd..529bc4e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,7 +66,7 @@ jobs: uses: ./ with: github_token: ${{ secrets.GITHUB_TOKEN }} - working_directory: __tests__/testdata/workdir/ + working_directory: __tests__/testdata/workdir create_issues: false production_flag: true @@ -100,6 +100,6 @@ jobs: # uses: ./ # with: # github_token: ${{ secrets.GITHUB_TOKEN }} - # working_directory: __tests__/testdata/workdir/ + # working_directory: __tests__/testdata/workdir # create_issues: false # production_flag: true