From 580e4b9a6909619940bd38803dba754228bc307c Mon Sep 17 00:00:00 2001 From: Dongie Agnir Date: Fri, 1 May 2026 11:31:35 -0700 Subject: [PATCH] Skip pull-request-build on master push The runs pushes to master always fail because PR_NUMBER is absent, so the script invocation fails: [2026-05-01T17:28:57.403Z] --pr-number value is required! Error: Process completed with exit code 1. Running this on master push is redunant anyway because PR's go through the merge queue first, where this script *does* run correctly. --- .github/workflows/pull-request-build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml index ac49459ff53..96edcd3b129 100644 --- a/.github/workflows/pull-request-build.yml +++ b/.github/workflows/pull-request-build.yml @@ -2,9 +2,6 @@ name: Build SDK on: merge_group: pull_request: - push: - branches: - - master paths-ignore: - '**.md' - '.all-contributorsrc'