Skip to content

Commit

Permalink
Merge pull request #118 from mehrancodes/feature/fix-deploy-keys-coun…
Browse files Browse the repository at this point in the history
…t-info

Update the deploy key count information output
  • Loading branch information
mehrancodes authored Oct 27, 2024
2 parents 8ce26e8 + 58239b8 commit eecba91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/Github/GithubService.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function deleteAllKeys(string $keyTitle): bool
$keyTitle
)
);
$this->information(sprintf('Deploy Keys found for delete: #%s', $gitProvider));
$this->information(sprintf('Deploy Keys found for delete: #%s', count($deployKeys)));

foreach ($deployKeys as $deployKey) {
if (! $deployKeyId = Arr::get($deployKey, 'id')) {
Expand Down

0 comments on commit eecba91

Please sign in to comment.