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 bbfa423 commit e3ae577Copy full SHA for e3ae577
github_actions/action/run.py
@@ -87,7 +87,9 @@ def get_pr_commit_messages(event: GitHubEvent) -> Iterable[str]:
87
)
88
89
if status != 200:
90
- sys.exit(f"::error::Github API failed with status code {status}")
+ sys.exit(
91
+ f"::error::Github API failed with status code {status}. Response: {data}"
92
+ )
93
94
commits.extend(commit_data["commit"]["message"] for commit_data in data)
95
0 commit comments