[3.13] gh-133410: Fix PR detection in build workflow (GH-133671) (#134054)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-05-15 15:41:47 +02:00 committed by GitHub
parent cec0e13fd4
commit bc1a6ecfab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -57,7 +57,7 @@ class Outputs:
def compute_changes() -> None:
target_branch, head_ref = git_refs()
if target_branch and head_ref:
if os.environ.get("GITHUB_EVENT_NAME", "") == "pull_request":
# Getting changed files only makes sense on a pull request
files = get_changed_files(target_branch, head_ref)
outputs = process_changed_files(files)