Skip to content

Commit 32fc271

Browse files
authored
fix: Removes GIT_BASE_REF line (#648)
Removes definition sof GIT_BASE_REF. Gemini says the following jive: By removing the potentially conflicting GIT_BASE_REF environment variable, we simplify the workflow and ensure that find-changes.sh consistently uses the BASE_REF value we're explicitly providing. This should help us determine if the root cause of the empty affected_workspaces is related to an incorrect base reference. So this is more of a debugging step.
1 parent cca4025 commit 32fc271

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/playwright.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ jobs:
5656
BASE_REF=$([ "${{ github.event_name }}" == "pull_request" ] && echo "origin/${{ github.base_ref }}" || echo "${{ github.event.before }}")
5757
echo "Using BASE_REF: $BASE_REF" # Optional: for debugging
5858
bash samples/find-changes.sh "$BASE_REF"
59-
env:
60-
GIT_BASE_REF: ${{ github.event_name == 'pull_request' && format('origin/{0}', github.base_ref) || github.event.before }}
6159
6260
- name: Setup Node.js
6361
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)