We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 205b50c commit e4b46b5Copy full SHA for e4b46b5
src/lambda_gha/__main__.py
@@ -27,6 +27,11 @@ def main():
27
token = environ["GH_PAT"]
28
api_key = environ["LAMBDA_API_KEY"]
29
30
+ # Debug token info (without revealing the actual token)
31
+ print(f"GH_PAT length: {len(token)}")
32
+ print(f"GH_PAT prefix: {token[:4]}..." if len(token) > 4 else f"GH_PAT too short: {len(token)}")
33
+ print(f"GH_PAT has newline: {chr(10) in token or chr(13) in token}")
34
+
35
builder = (
36
EnvVarBuilder(env)
37
.update_state("INPUT_DEBUG", "debug")
0 commit comments