File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
modules/core/src/main/scala/org/scalasteward/core/application Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,9 @@ Options and flags:
8383 --azure-repos-organization <string>
8484 The Azure organization (required when --forge-type is azure-repos)
8585 --github-app-id <integer>
86- GitHub application id
86+ GitHub application id. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required.
8787 --github-app-key-file <file>
88- GitHub application key file
88+ GitHub application key file. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required.
8989 --url-checker-test-url <uri>
9090 URL for testing the UrlChecker at start-up (can be used multiple times); default: https://github.com
9191 --default-maven-repo <string>
Original file line number Diff line number Diff line change @@ -284,10 +284,16 @@ object Cli {
284284 (gitlabMergeWhenPipelineSucceeds, gitlabRequiredReviewers).mapN(GitLabCfg .apply)
285285
286286 private val githubAppId : Opts [Long ] =
287- option[Long ](" github-app-id" , " GitHub application id" )
287+ option[Long ](
288+ " github-app-id" ,
289+ " GitHub application id. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required."
290+ )
288291
289292 private val githubAppKeyFile : Opts [File ] =
290- option[File ](" github-app-key-file" , " GitHub application key file" )
293+ option[File ](
294+ " github-app-key-file" ,
295+ " GitHub application key file. Repos accessible by this app are added to the repos in repos.md. git-ask-pass is still required."
296+ )
291297
292298 private val gitHubApp : Opts [Option [GitHubApp ]] =
293299 (githubAppId, githubAppKeyFile).mapN(GitHubApp .apply).orNone
You can’t perform that action at this time.
0 commit comments