Skip to content
Draft
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
5 changes: 5 additions & 0 deletions .github/workflows/vally-eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ concurrency:
jobs:
eval-job:
runs-on: ubuntu-latest
# Secrets (e.g. COPILOT_GITHUB_TOKEN) are never exposed to `pull_request` runs
# triggered from a forked repository, so this job cannot authenticate in that
# context. Skip it there instead of failing every eval on a missing token;
# it still runs normally for same-repo pull requests and workflow_dispatch.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository

steps:
- name: Checkout repository
Expand Down
Loading