Skip to content

Commit 1015fe9

Browse files
justin808claude
andcommitted
Fix critical bug: incorrect output reference in workflow files
The check-label step returns `result` output, but workflows were incorrectly referencing it as `has_label`, causing the full-ci label feature to be completely broken. Fixed in all 5 workflows: - .github/workflows/main.yml - .github/workflows/examples.yml - .github/workflows/pro-integration-tests.yml - .github/workflows/pro-lint.yml - .github/workflows/pro-package-tests.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 400bb80 commit 1015fe9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run_ruby_tests: ${{ steps.detect.outputs.run_ruby_tests }}
3030
run_dummy_tests: ${{ steps.detect.outputs.run_dummy_tests }}
3131
run_generators: ${{ steps.detect.outputs.run_generators }}
32-
has_full_ci_label: ${{ steps.check-label.outputs.has_label }}
32+
has_full_ci_label: ${{ steps.check-label.outputs.result }}
3333
steps:
3434
- uses: actions/checkout@v4
3535
with:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run_ruby_tests: ${{ steps.detect.outputs.run_ruby_tests }}
3030
run_dummy_tests: ${{ steps.detect.outputs.run_dummy_tests }}
3131
run_generators: ${{ steps.detect.outputs.run_generators }}
32-
has_full_ci_label: ${{ steps.check-label.outputs.has_label }}
32+
has_full_ci_label: ${{ steps.check-label.outputs.result }}
3333
steps:
3434
- uses: actions/checkout@v4
3535
with:

.github/workflows/pro-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
docs_only: ${{ steps.detect.outputs.docs_only }}
2525
run_pro_lint: ${{ steps.detect.outputs.run_pro_lint }}
2626
run_pro_tests: ${{ steps.detect.outputs.run_pro_tests }}
27-
has_full_ci_label: ${{ steps.check-label.outputs.has_label }}
27+
has_full_ci_label: ${{ steps.check-label.outputs.result }}
2828
steps:
2929
- uses: actions/checkout@v4
3030
with:

.github/workflows/pro-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
docs_only: ${{ steps.detect.outputs.docs_only }}
2525
run_pro_lint: ${{ steps.detect.outputs.run_pro_lint }}
2626
run_pro_tests: ${{ steps.detect.outputs.run_pro_tests }}
27-
has_full_ci_label: ${{ steps.check-label.outputs.has_label }}
27+
has_full_ci_label: ${{ steps.check-label.outputs.result }}
2828
steps:
2929
- uses: actions/checkout@v4
3030
with:

.github/workflows/pro-package-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
docs_only: ${{ steps.detect.outputs.docs_only }}
2525
run_pro_lint: ${{ steps.detect.outputs.run_pro_lint }}
2626
run_pro_tests: ${{ steps.detect.outputs.run_pro_tests }}
27-
has_full_ci_label: ${{ steps.check-label.outputs.has_label }}
27+
has_full_ci_label: ${{ steps.check-label.outputs.result }}
2828
steps:
2929
- uses: actions/checkout@v4
3030
with:

0 commit comments

Comments
 (0)