Skip to content

Commit 200fe54

Browse files
edburnsCopilot
andauthored
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent f26ed4d commit 200fe54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-smoke-test.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Follow every step in the prompt: create the `smoke-test/` directory, create `pom
8383
### Step 3 — Report result
8484

8585
- **Success** (exit code 0): use the `noop` tool with a message like "Smoke test passed — Quick Start code compiled and ran successfully against SDK version X.Y.Z-SNAPSHOT".
86-
- **Failure** (SDK build failure, smoke test build failure, smoke test run failure, or non-zero exit code): use the `missing_data` tool with `reason` set to a description of what failed and `context` containing the relevant error output. Do NOT call `noop` on failure. Examples:
87-
- SDK build fails: `missing_data(reason="SDK build failed with mvn -DskipTests clean install", context="<error output>")`
88-
- Smoke test compilation fails: `missing_data(reason="Smoke test Maven build failed", context="<error output>")`
89-
- Smoke test run returns non-zero: `missing_data(reason="Smoke test exited with code N", context="<program output>")`
86+
- **Failure** (SDK build failure, smoke test build failure, smoke test run failure, or non-zero exit code): use the `missing_data` tool with `reason` set to a description of what failed and `context` containing a brief summary or the most relevant one or two error lines (keep this under ~200 characters). Do NOT call `noop` on failure. Do not paste full logs into `context`. Examples:
87+
- SDK build fails: `missing_data(reason="SDK build failed with mvn -DskipTests clean install", context="[ERROR] Failed to execute goal ...")`
88+
- Smoke test compilation fails: `missing_data(reason="Smoke test Maven build failed", context="[ERROR] Compilation failure: ...")`
89+
- Smoke test run returns non-zero: `missing_data(reason="Smoke test exited with code N", context="Main class threw <ExceptionType>: <message>")`

0 commit comments

Comments
 (0)