Skip to content

Commit b0b49cd

Browse files
justin808claude
andcommitted
Fix Pro workflows: use correct working-directory for detect-changes
The Pro workflows have defaults.run.working-directory set to react_on_rails_pro. Using working-directory: .. was attempting to go outside the workspace. Changed to working-directory: . to run from workspace root where the script exists. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e569c15 commit b0b49cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pro-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525
- name: Detect relevant changes
2626
id: detect
27-
working-directory: ..
27+
working-directory: .
2828
run: |
2929
BASE_REF="${{ github.event.pull_request.base.sha || github.event.before || 'origin/master' }}"
3030
script/ci-changes-detector "$BASE_REF"

.github/workflows/pro-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525
- name: Detect relevant changes
2626
id: detect
27-
working-directory: ..
27+
working-directory: .
2828
run: |
2929
BASE_REF="${{ github.event.pull_request.base.sha || github.event.before || 'origin/master' }}"
3030
script/ci-changes-detector "$BASE_REF"

.github/workflows/pro-package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525
- name: Detect relevant changes
2626
id: detect
27-
working-directory: ..
27+
working-directory: .
2828
run: |
2929
BASE_REF="${{ github.event.pull_request.base.sha || github.event.before || 'origin/master' }}"
3030
script/ci-changes-detector "$BASE_REF"

0 commit comments

Comments
 (0)