From d93de52c8117ffc33c2f58c3d443ac3871f3c42b Mon Sep 17 00:00:00 2001 From: pr0uxx Date: Fri, 18 Sep 2026 12:26:27 +0100 Subject: [PATCH 1/2] Attempt fix on metadata call Call to metadata without explicit provided inputs resolved those inputs as empty strings. This attempts to force explicit boolean values instead. --- .github/workflows/Build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 5b2b9dc..dd86c73 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -49,8 +49,8 @@ jobs: # Execute the workflow uses: ./.github/workflows/Metadata.yml with: - isRelease: ${{ inputs.isRelease }} - isPrerelease: ${{ inputs.isPrerelease }} + isRelease: ${{ github.event_name == 'workflow_call' && inputs.isRelease || false }} + isPrerelease: ${{ github.event_name == 'workflow_call' && inputs.isPrerelease || false }} # Execution session that builds the artifacts that are used for deployment Build-Prod: From d1060f71204d0ff3f62d74e23f21067ca10606cf Mon Sep 17 00:00:00 2001 From: pr0uxx Date: Fri, 18 Sep 2026 12:30:06 +0100 Subject: [PATCH 2/2] give issues:write permission to reachability scan same as before, failing with 403 when trying to write a comment --- .github/workflows/Security-Reachability.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Security-Reachability.yml b/.github/workflows/Security-Reachability.yml index fc003c8..a6277d6 100644 --- a/.github/workflows/Security-Reachability.yml +++ b/.github/workflows/Security-Reachability.yml @@ -30,7 +30,7 @@ jobs: # Sets the scopes available to the github_token injected to the GH Actions runner permissions: - issues: read + issues: write contents: read pull-requests: read