Commit 62918c1
github-actions: use inputs.no_pr != true to avoid GHA boolean coercion
Address review feedback on the no_pr guard: `!inputs.no_pr` can be
ambiguous in GitHub Actions expressions because boolean inputs may
arrive as the string 'true'/'false' in some contexts, where the
negation `!` would always evaluate to false (strings are truthy).
Switch to explicit `inputs.no_pr != true` comparison which is robust
across both boolean and string forms.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 7b620c8 commit 62918c1
1 file changed
Lines changed: 6 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1202 | 1202 | | |
1203 | 1203 | | |
1204 | 1204 | | |
1205 | | - | |
1206 | | - | |
1207 | | - | |
| 1205 | + | |
| 1206 | + | |
| 1207 | + | |
| 1208 | + | |
| 1209 | + | |
1208 | 1210 | | |
1209 | 1211 | | |
1210 | 1212 | | |
1211 | 1213 | | |
1212 | | - | |
| 1214 | + | |
1213 | 1215 | | |
1214 | 1216 | | |
1215 | 1217 | | |
| |||
0 commit comments