From 8c553ee9f0941ee114486be3eab1a9aa130e5e3f Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 25 Apr 2025 10:54:12 -0400 Subject: [PATCH] ci: Add no-op job for "Run Agent Eval" workflow (#29420) This PR adds a no-op job for the "Run Agent Eval" workflow. This aims to avoid marking the check as failed on a PR that does not include the `run-eval` label. Release Notes: - N/A --- .github/workflows/eval.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/eval.yml b/.github/workflows/eval.yml index e9e0f58cfe27d2ccb53780f28dcff20c63942899..e2dac6b3a5aa1a8182162f391c72fdb436a4547e 100644 --- a/.github/workflows/eval.yml +++ b/.github/workflows/eval.yml @@ -25,6 +25,15 @@ env: ZED_EVAL_TELEMETRY: 1 jobs: + # This is a no-op job that we run to prevent GitHub from making the workflow + # as failed for PRs that don't have the `run-eval` label. + noop: + name: No-op + runs-on: ubuntu-latest + steps: + - name: No-op + run: echo "Nothing to do" + run_eval: timeout-minutes: 60 name: Run Agent Eval