1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

fix #128: guard against empty actionName when 'uses: ./' (#130)

* fix #128: guard against empty actionName when 'uses: ./'

* fix #129 - force image name to be lowercase
This commit is contained in:
Casey Lee 2020-03-06 10:17:20 -08:00 committed by GitHub
parent f5fac4b8b9
commit ec337ae5cf
2 changed files with 7 additions and 2 deletions

View file

@ -238,7 +238,7 @@ func NewGitCloneExecutor(input NewGitCloneExecutorInput) Executor {
Force: true,
})
if err != nil && err.Error() != "already up-to-date" {
logger.Errorf("Unable to pull %s: %v", refName, err)
logger.Debugf("Unable to pull %s: %v", refName, err)
}
logger.Debugf("Cloned %s to %s", input.URL, input.Dir)