From 5668c1541880641ab2dde5d7b205bdba01c5c5eb Mon Sep 17 00:00:00 2001 From: alexbelgium Date: Tue, 21 Jul 2026 20:38:01 +0200 Subject: [PATCH] Fix PR Check Build workflow using empty github.event.before github.event.before is only populated on push events, but this workflow triggers on pull_request, where it's empty. This made every git diff call fail (fatal: ambiguous argument) and changed-addons resolve to [], so addon linting, build testing, and changelog checks were silently skipped on every PR regardless of what changed. Use github.event.pull_request.base.sha instead, which is always populated for pull_request-triggered runs. --- .github/workflows/onpr_check-pr.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/onpr_check-pr.yaml b/.github/workflows/onpr_check-pr.yaml index ecc6ee12fc..715cc1c1fa 100644 --- a/.github/workflows/onpr_check-pr.yaml +++ b/.github/workflows/onpr_check-pr.yaml @@ -22,8 +22,8 @@ jobs: - name: Find changed addon directories id: find_addons run: | - git fetch origin "${{ github.event.before }}" || true - changed_config_files=$(git diff --name-only "${{ github.event.before }}" "${{ github.sha }}" | grep -E '^[^/]+/config\.(json|ya?ml)$' || true) + git fetch origin "${{ github.event.pull_request.base.sha }}" || true + changed_config_files=$(git diff --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" | grep -E '^[^/]+/config\.(json|ya?ml)$' || true) echo "Changed config files:" echo "$changed_config_files" changed_addons=$(printf '%s' "$changed_config_files" | awk -F/ '{print $1}' | sort -u | jq -R -s -c 'split("\n") | map(select(length > 0))') @@ -32,11 +32,11 @@ jobs: - name: Find changelog id: changed-files run: | - git fetch origin "${{ github.event.before }}" || true - changed_changelog_files=$(git diff --name-only "${{ github.event.before }}" "${{ github.sha }}" | grep -iE '^([^/]+/)?changelog\.(md|txt|ya?ml|json)$' || true) + git fetch origin "${{ github.event.pull_request.base.sha }}" || true + changed_changelog_files=$(git diff --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" | grep -iE '^([^/]+/)?changelog\.(md|txt|ya?ml|json)$' || true) echo "$changed_changelog_files" echo "changelogs_files=$changed_changelog_files" >> "$GITHUB_OUTPUT" - changed_config_files=$(git diff --name-only "${{ github.event.before }}" "${{ github.sha }}" | grep -E '^[^/]+/config\.(json|ya?ml)$' || true) + changed_config_files=$(git diff --name-only "${{ github.event.pull_request.base.sha }}" "${{ github.sha }}" | grep -E '^[^/]+/config\.(json|ya?ml)$' || true) echo "$changed_config_files" all_changed_files=$(echo -e "$changed_config_files\n$changed_changelog_files" | sort -u) changed_addons=$(printf '%s' "$all_changed_files" | awk -F/ '{print $1}' | sort -u | jq -R -s -c 'split("\n") | map(select(length > 0))')