pr: do not stop processing if failed on some pacakge during check

This commit is contained in:
2025-11-19 16:36:48 +01:00
parent 4bd259a2a0
commit e11993c81f
2 changed files with 13 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ import "src.opensuse.org/autogits/common"
type StateChecker interface {
VerifyProjectState(configs *common.AutogitConfig) ([]*PRToProcess, error)
CheckRepos() error
CheckRepos()
ConsistencyCheckProcess() error
}