You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/help.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,9 +83,9 @@ Options and flags:
83
83
--azure-repos-organization <string>
84
84
The Azure organization (required when --forge-type is azure-repos)
85
85
--github-app-id <integer>
86
-
GitHub application id. Used to retrieve a list of repos for running scala-steward. This is used instead of repos.md, but git-ask-pass is still required.
86
+
GitHub application id. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required.
87
87
--github-app-key-file <file>
88
-
GitHub application key file. Used to retrieve a list of repos for running scala-steward. This is used instead of repos.md, but git-ask-pass is still required.
88
+
GitHub application key file. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required.
89
89
--url-checker-test-url <uri>
90
90
URL for testing the UrlChecker at start-up (can be used multiple times); default: https://github.com
Copy file name to clipboardExpand all lines: modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -286,13 +286,13 @@ object Cli {
286
286
privatevalgithubAppId:Opts[Long] =
287
287
option[Long](
288
288
"github-app-id",
289
-
"GitHub application id. Used to retrieve a list of repos for running scala-steward. This is used instead of repos.md, but git-ask-pass is still required."
289
+
"GitHub application id. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required."
290
290
)
291
291
292
292
privatevalgithubAppKeyFile:Opts[File] =
293
293
option[File](
294
294
"github-app-key-file",
295
-
"GitHub application key file. Used to retrieve a list of repos for running scala-steward. This is used instead of repos.md, but git-ask-pass is still required."
295
+
"GitHub application key file. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required."
0 commit comments