Skip to content

Conversation

@sundargthb
Copy link
Contributor

Issue #, if available:

Description of changes:

Problem

External contributor PRs were not triggering integration tests. Both check-access-and-checkout and safety-gate jobs were being skipped.

Root Cause

The workflow referenced steps.safety-check.outputs.safe but github-script action stores return values in steps.safety-check.outputs.result.

This caused should-run output to be undefined, failing both job conditions:

  • check-access-and-checkout needs should-run == 'true'
  • safety-gate needs should-run == 'false'

Fix

Changed from:

should-run: ${{ steps.safety-check.outputs.safe }}

To:

should-run: ${{ steps.safety-check.outputs.result }}

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@sundargthb sundargthb requested review from siwachabhi and removed request for siwachabhi October 27, 2025 23:14
@sundargthb sundargthb merged commit 90f04bf into main Oct 29, 2025
20 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants