Should fix output problem
Some checks failed
Build on push / prepare (push) Successful in 7s
Build on push / build (push) Failing after 4s

This commit is contained in:
2026-02-15 10:11:29 +01:00
parent ca51f738c0
commit 8cdd6a6e0e
6 changed files with 140 additions and 48 deletions

View File

@@ -4,6 +4,7 @@ using sh.actions.package_cleanup.Models;
public interface IGiteaPackageService
{
Task<IEnumerable<GiteaPackage>> GetPackagesByNameAsync(string name, CancellationToken cancellationToken = default);
Task<IEnumerable<GiteaPackage>> GetPackagesByOwnerAsync(CancellationToken cancellationToken = default);
Task DeletePackage(GiteaPackage package, CancellationToken cancellationToken = default);
}