From 68a23436e8ca67bd6f365b7b7e7340caf5551e43 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Fri, 26 Nov 2021 10:26:21 +0100 Subject: [PATCH] Only run self-service compat job on PRs (#11893) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is currently failing for the notice file update PR. While we could try to hack around the git commands to do something sensible, I don’t really see the point. We really only need this for PRs. changelog_begin changelog_end --- ci/prs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/prs.yml b/ci/prs.yml index 4c38ebe9dabc..73a9bc8fb540 100644 --- a/ci/prs.yml +++ b/ci/prs.yml @@ -174,6 +174,7 @@ jobs: - job: self_service_compat_test pool: vmImage: ubuntu-20.04 + condition: eq(variables['Build.Reason'], 'PullRequest') steps: - checkout: self - template: bash-lib.yml