Remove scheduled action tasks if the repo is archived (#30224)

Fix #30220

(cherry picked from commit 1ef2eb50d82d07b1e4ff312ef58953d1bba2437a)
This commit is contained in:
Zettat123 2024-04-01 21:48:14 +08:00 committed by Gergely Nagy
parent 9214824510
commit 87870ade49
No known key found for this signature in database
4 changed files with 29 additions and 2 deletions

View file

@ -66,6 +66,11 @@ func startTasks(ctx context.Context) error {
}
}
if row.Repo.IsArchived {
// Skip if the repo is archived
continue
}
cfg, err := row.Repo.GetUnit(ctx, unit.TypeActions)
if err != nil {
if repo_model.IsErrUnitTypeNotExist(err) {