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.
2 parents efe3e82 + fab94f9 commit 3f25ab7Copy full SHA for 3f25ab7
1 file changed
bin/main
@@ -201,14 +201,13 @@ def _get_data(
201
202
def _save_artifact(
203
data: dict[str, Any],
204
- pr: int,
205
run_id: int,
206
url: str,
207
token: str,
208
) -> None:
209
contents = json.dumps(data, separators=(',', ':')).encode()
210
211
- artifact_name = f'pre-commit-ci-lite-{pr}-{run_id}'
+ artifact_name = f'pre-commit-ci-lite-{run_id}'
212
213
headers = {
214
'Accept': 'application/json;api-version=6.0-preview',
@@ -283,7 +282,6 @@ def main(argv: Sequence[str] | None = None) -> int:
283
282
else:
284
_save_artifact(
285
data=data,
286
- pr=args.pr,
287
run_id=args.run_id,
288
url=args.runtime_url,
289
token=args.runtime_token,
0 commit comments