Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/actions/run-vscode-e2e-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ inputs:
description: "Whether this is a fork (affects SSH tests)"
required: false
default: "false"
github_token:
description: "GitHub token for authenticated API requests (e.g., @vscode/ripgrep download)"
required: false
default: ""

runs:
using: "composite"
Expand Down Expand Up @@ -64,6 +68,8 @@ runs:
cd core
npm ci
fi
env:
GITHUB_TOKEN: ${{ inputs.github_token }}

- name: Fix VSCode binary permissions
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ jobs:
ssh_key: ${{ secrets.GH_ACTIONS_SSH_TEST_KEY_PEM }}
ssh_host: ${{ secrets.GH_ACTIONS_SSH_TEST_DNS_NAME }}
is_fork: ${{ github.event.pull_request.head.repo.fork == true || github.actor == 'dependabot[bot]' }}
github_token: ${{ secrets.CI_GITHUB_TOKEN }}

jetbrains-tests:
runs-on: ubuntu-latest
Expand Down
Loading