We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f6f6a0 commit 6e116c0Copy full SHA for 6e116c0
1 file changed
.claude/run-e2e-tests.sh
@@ -88,9 +88,8 @@ setup_git_and_gh() {
88
# Disable commit signing for tests
89
git config --global commit.gpgsign false
90
91
- # Setup gh authentication
92
- export GITHUB_TOKEN="$(cat "$TOKEN_FILE")"
93
- export GH_TOKEN="$GITHUB_TOKEN"
+ # Setup gh authentication (gh uses GH_TOKEN)
+ export GH_TOKEN="$(cat "$TOKEN_FILE")"
94
95
log_info "Configuring gh auth..."
96
gh auth setup-git
@@ -115,8 +114,7 @@ restore_git_config() {
115
114
run_e2e_tests() {
116
log_info "Running e2e tests..."
117
118
119
+ # GH_TOKEN is already exported from setup_git_and_gh, no need to re-export
120
121
# Run the tests with a timeout
122
if timeout 480 bash "$PROJECT_ROOT/tests/test_e2e.sh"; then
0 commit comments