From 930e8f74e94b7de0a4bedb8318abfb7845d6e9a4 Mon Sep 17 00:00:00 2001 From: iscai-msft Date: Fri, 17 Jan 2025 13:39:24 -0500 Subject: [PATCH] don't run changelog verification on auto prs --- .github/workflows/consistency.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/consistency.yml b/.github/workflows/consistency.yml index 93eff63678a..722404fd4a3 100644 --- a/.github/workflows/consistency.yml +++ b/.github/workflows/consistency.yml @@ -32,7 +32,7 @@ jobs: - run: pnpm change verify name: Check changelog - if: ${{ !startsWith(github.head_ref, 'publish/') && !startsWith(github.head_ref, 'dependabot/') && !startsWith(github.head_ref, 'backmerge/') }} + if: ${{ !startsWith(github.head_ref, 'publish/') && !startsWith(github.head_ref, 'dependabot/') && !startsWith(github.head_ref, 'backmerge/') && !startsWith(github.head_ref, 'auto-microsoft-update/') }} - run: pnpm check-version-mismatch name: Check version mismatch