File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -156,10 +156,11 @@ runs:
156156 ' true' && inputs.claude-code-auto-fix-enabled == 'true' &&
157157 github.event.pull_request.head.repo.full_name == github.repository
158158 shell : bash
159+ env :
160+ HAS_SA : ${{ inputs.claude-code-gcp-service-account-key != '' }}
161+ HAS_PROJ : ${{ inputs.claude-code-gcp-project-id != '' }}
159162 run : |
160163 MISSING=""
161- HAS_SA="${{ inputs.claude-code-gcp-service-account-key != '' }}"
162- HAS_PROJ="${{ inputs.claude-code-gcp-project-id != '' }}"
163164 if [ "$HAS_SA" != "true" ]; then MISSING="GCP_SERVICE_ACCOUNT_KEY"; fi
164165 if [ "$HAS_PROJ" != "true" ]; then if [ -n "$MISSING" ]; then MISSING="$MISSING, "; fi; MISSING="${MISSING}GCP_PROJECT_ID"; fi
165166 if [ -z "$MISSING" ]; then
@@ -169,7 +170,6 @@ runs:
169170 echo "should-run-claude=false" >> $GITHUB_OUTPUT
170171 echo "missing=$MISSING" >> $GITHUB_OUTPUT
171172 fi
172-
173173 - name : Build details markdown
174174 id : build-details
175175 if :
You can’t perform that action at this time.
0 commit comments