From 0250fbf77bfe09a37256a550a2a3de35414444e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Mon, 14 Sep 2026 17:03:55 +0200 Subject: [PATCH] Fix DotNet-helixApi-Access for internal runtime.yml/perf.yml PR runs Since we now have the job monitor we need this for PR runs as well --- eng/pipelines/performance/perf.yml | 2 +- eng/pipelines/runtime.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/performance/perf.yml b/eng/pipelines/performance/perf.yml index 9b5aeb57ce928a..93c90fa29b2079 100644 --- a/eng/pipelines/performance/perf.yml +++ b/eng/pipelines/performance/perf.yml @@ -54,7 +54,7 @@ extends: - stage: Build variables: # The standalone monitor does not inherit the submitter jobs' variable groups. - - ${{ if and(eq(variables['System.TeamProject'], 'internal'), ne(variables['Build.Reason'], 'PullRequest')) }}: + - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - group: DotNet-HelixApi-Access jobs: diff --git a/eng/pipelines/runtime.yml b/eng/pipelines/runtime.yml index 51a653c22dc2d1..74c90c04774dc9 100644 --- a/eng/pipelines/runtime.yml +++ b/eng/pipelines/runtime.yml @@ -67,7 +67,7 @@ extends: - stage: Build variables: # The standalone monitor does not inherit the submitter jobs' variable groups. - - ${{ if and(eq(variables['System.TeamProject'], 'internal'), ne(variables['Build.Reason'], 'PullRequest')) }}: + - ${{ if eq(variables['System.TeamProject'], 'internal') }}: - group: DotNet-HelixApi-Access jobs: - ${{ if eq(variables['enableHelixJobMonitor'], true) }}: