Skip to content

Commit 8b608dc

Browse files
committed
Clarifying that github app repos are added to the repos.md
1 parent e02d918 commit 8b608dc

File tree

2 files changed

+4
-4
lines changed
  • docs
  • modules/core/src/main/scala/org/scalasteward/core/application

2 files changed

+4
-4
lines changed

docs/help.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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. 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.
8787
--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.
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>

modules/core/src/main/scala/org/scalasteward/core/application/Cli.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ object Cli {
286286
private val githubAppId: Opts[Long] =
287287
option[Long](
288288
"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."
290290
)
291291

292292
private val githubAppKeyFile: Opts[File] =
293293
option[File](
294294
"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."
296296
)
297297

298298
private val gitHubApp: Opts[Option[GitHubApp]] =

0 commit comments

Comments
 (0)