Skip to content

Commit c5933b1

Browse files
committed
fix(actions): removed todos
Signed-off-by: Emre DEĞER <ben@emre.dev>
1 parent 78b58be commit c5933b1

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

lib/Github/Api/Repository/Actions/Artifacts.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ public function remove(string $username, string $repository, int $artifactId)
7777
*/
7878
public function download(string $username, string $repository, int $artifactId, string $format = 'zip')
7979
{
80-
// TODO(): Get `Location` header for download link.
8180
return $this->get('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/actions/artifacts/'.$artifactId.'/'.$format);
8281
}
8382
}

lib/Github/Api/Repository/Actions/WorkflowJobs.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public function show(string $username, string $repository, int $jobId)
4949
*/
5050
public function downloadLogs(string $username, string $repository, int $jobId)
5151
{
52-
// TODO(): Get `Location` header for download link.
5352
return $this->get('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/actions/jobs/'.$jobId.'/logs');
5453
}
5554
}

lib/Github/Api/Repository/Actions/WorkflowRuns.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ public function usage(string $username, string $repository, int $runId)
120120
*/
121121
public function downloadLogs(string $username, string $repository, int $runId)
122122
{
123-
// TODO(): Get `Location` header for download link.
124123
return $this->get('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/actions/runs/'.$runId.'/logs');
125124
}
126125

0 commit comments

Comments
 (0)