main.kotlin.org.virtuslab.bazelsteward.app.AppConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-steward Show documentation
Show all versions of bazel-steward Show documentation
Bazel Steward is a bot that helps you keep your library dependencies, Bazel and Bazel rules up-to-date.
package org.virtuslab.bazelsteward.app
import org.virtuslab.bazelsteward.core.common.GitClient.GitAuthor
import java.nio.file.Path
data class AppConfig(
val workspaceRoot: Path,
val configPath: Path,
val pushToRemote: Boolean,
val updateAllPullRequests: Boolean,
val baseBranch: String,
val gitAuthor: GitAuthor,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy