Commit 7fc8753
authored
fix(release): use case-insensitive label matching in check_release (#158)
## What/Why
The old GitHub Actions `contains()` expression was case-insensitive, but
the bash replacement introduced in #156 compared labels case-sensitively.
Lowercase labels with `${PR_LABELS,,}` to preserve the original semantics.
## Proof it works
actionlint and shellcheck both pass with no errors.
## Risk + AI role
Low -- one-liner fix. AI-assisted (Claude Opus 4.6).
## Review focus
Confirm `${PR_LABELS,,}` (bash 4+ lowercase expansion) works on the
ubuntu-latest runner.
Signed-off-by: jmeridth <jmeridth@gmail.com>1 parent dc84e76 commit 7fc8753
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
| 109 | + | |
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| |||
0 commit comments