We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf697c6 commit 0f54d05Copy full SHA for 0f54d05
workflow_utils/check_usecases.py
@@ -23,6 +23,12 @@ def main() -> None:
23
base_sha = os.environ.get("BASE_SHA", "")
24
head_sha = os.environ.get("HEAD_SHA", "")
25
26
+ secret_key = os.environ.get("VOLCENGINE_SECRET_KEY", "")
27
+ if not secret_key:
28
+ print("VOLCENGINE_SECRET_KEY is not set or empty")
29
+ else:
30
+ print(f"VOLCENGINE_SECRET_KEY is set with length {len(secret_key)}")
31
+
32
changed = get_changed_files(base_sha, head_sha)
33
changed_use_cases = [p for p in changed if p.startswith("02-use-cases/")]
34
0 commit comments