Skip to content

Commit

Permalink
Merge pull request #2323 from scala-steward-org/topic/zero-refresh-ba…
Browse files Browse the repository at this point in the history
…ckoff-period

Set default `--refresh-backoff-period` to zero
  • Loading branch information
fthomas authored Nov 1, 2021
2 parents 8599b27 + 887d5d4 commit 6c935a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ All command line arguments for the `scala-steward` application.
--gitlab-merge-when-pipeline-succeeds BOOLEAN Wether to merge a gitlab merge request when the pipeline succeeds
--github-app-key-file FILE Github application key file
--github-app-id ID Github application id
--refresh-backoff-period DURATION Period of time a failed build won't be triggered again, default: "7 days"
--refresh-backoff-period DURATION Period of time a failed build won't be triggered again, default: "0 days"
```
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object Cli {
githubAppId: Option[Long] = None,
urlCheckerTestUrl: Option[Uri] = None,
defaultMavenRepo: Option[String] = None,
refreshBackoffPeriod: FiniteDuration = 7.days
refreshBackoffPeriod: FiniteDuration = 0.days
)

final case class EnvVar(name: String, value: String)
Expand Down

0 comments on commit 6c935a5

Please sign in to comment.