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 53e8445 commit d77c970Copy full SHA for d77c970
flake8_github_action/__init__.py
@@ -92,7 +92,7 @@ def action(
92
check = Checks(
93
owner=github_username,
94
repository_name=repo_name,
95
- check_name="Linting",
+ check_name="Flake8",
96
head_sha=dulwich_repo.head().decode("UTF-8"),
97
token=token.value,
98
)
@@ -128,7 +128,11 @@ def action(
128
conclusion="success", # TODO: reflect flake8 output
129
output={
130
"title": "Flake8 checks",
131
- "summary": "Output from Flake8",
+ "summary": "Output from Flake8",
132
"annotations": [a.to_dict() for a in annotation_chunks[-1]],
133
},
134
135
+
136
137
138
0 commit comments