We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a75821 commit 974d302Copy full SHA for 974d302
1 file changed
src/core/scm/github.py
@@ -18,7 +18,7 @@
18
log.warn("Unable to get PR number from event data, assuming not a PR")
19
exit(0)
20
commit_sha = os.getenv("GITHUB_SHA")
21
-gh_api_token = os.getenv("GH_API_TOKEN") or os.getenv("GITHUB_TOKEN") or os.getenv("github_token")
+gh_api_token = os.getenv("INPUT_GITHUB_TOKEN") or os.getenv("GITHUB_TOKEN") or os.getenv("github_token")
22
working_directory = os.getenv("GITHUB_WORKSPACE")
23
24
if working_directory is None:
0 commit comments