fix/require-two-pushes #20

Merged
kjuulh merged 2 commits from fix/require-two-pushes into v0.2 2022-09-21 22:48:49 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit f4290d8300 - Show all commits

View File

@ -3,7 +3,7 @@ name: write-a-readme
select: select:
repositories: repositories:
- git@git.front.kjuulh.io:kjuulh/octopush-test.git - git@git.front.kjuulh.io:kjuulh/octopush-test.git
- git@git.front.kjuulh.io:kjuulh/octopush.git #- git@git.front.kjuulh.io:kjuulh/octopush.git
# providers: # providers:
# - gitea: https://git.front.kjuulh.io # - gitea: https://git.front.kjuulh.io
# organisation: "cibus" # organisation: "cibus"

View File

@ -12,7 +12,7 @@ func New() (*zap.Logger, error) {
return lvl >= zapcore.ErrorLevel return lvl >= zapcore.ErrorLevel
}) })
lowPriority := zap.LevelEnablerFunc(func(lvl zapcore.Level) bool { lowPriority := zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl < zapcore.ErrorLevel && lvl > zapcore.DebugLevel return lvl < zapcore.ErrorLevel // && lvl > zapcore.DebugLevel
}) })
config := zap.NewDevelopmentEncoderConfig() config := zap.NewDevelopmentEncoderConfig()