File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed
modules/core/src/main/scala/org/scalasteward/core/application Expand file tree Collapse file tree 4 files changed +12
-6
lines changed 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
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
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
91
91
--default-maven-repo <string>
Original file line number Diff line number Diff line change @@ -284,10 +284,16 @@ object Cli {
284
284
(gitlabMergeWhenPipelineSucceeds, gitlabRequiredReviewers).mapN(GitLabCfg .apply)
285
285
286
286
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
+ )
288
291
289
292
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
+ )
291
297
292
298
private val gitHubApp : Opts [Option [GitHubApp ]] =
293
299
(githubAppId, githubAppKeyFile).mapN(GitHubApp .apply).orNone
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import sbt._
3
3
object Dependencies {
4
4
val bcprovJdk15to18 = " org.bouncycastle" % " bcprov-jdk15to18" % " 1.72"
5
5
val betterFiles = " com.github.pathikrit" %% " better-files" % " 3.9.2"
6
- val catsEffect = " org.typelevel" %% " cats-effect" % " 3.4.7 "
6
+ val catsEffect = " org.typelevel" %% " cats-effect" % " 3.4.8 "
7
7
val catsCore = " org.typelevel" %% " cats-core" % " 2.9.0"
8
8
val catsLaws = " org.typelevel" %% " cats-laws" % catsCore.revision
9
9
val catsParse = " org.typelevel" %% " cats-parse" % " 0.3.9"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
4
4
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.5.0" )
5
5
addSbtPlugin(" com.github.cb372" % " sbt-explicit-dependencies" % " 0.2.16" )
6
6
addSbtPlugin(" com.github.tkawachi" % " sbt-doctest" % " 0.10.0" )
7
- addSbtPlugin(" com.github.sbt" % " sbt-native-packager" % " 1.9.15 " )
7
+ addSbtPlugin(" com.github.sbt" % " sbt-native-packager" % " 1.9.16 " )
8
8
addSbtPlugin(" de.heikoseeberger" % " sbt-header" % " 5.9.0" )
9
9
addSbtPlugin(" io.github.davidgregory084" % " sbt-tpolecat" % " 0.4.2" )
10
10
addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.4.4" )
You can’t perform that action at this time.
0 commit comments