Files
2026-07-06 15:43:49 -04:00

19 lines
562 B
Python

import os
def main():
workspace = os.environ.get("WORKSPACE_NAME", "unknown")
location = os.environ.get("LOCATION_NAME", "unknown")
return [
{
"issue title": "Staging smoke check passed",
"issue description": (
f"Tool-builder smoke script ran on workspace={workspace} "
f"location={location}."
),
"issue severity": 4,
"issue next steps": (
"No action required — this is an informational smoke test."
),
}
]