Skip to content

Commit

Permalink
feat: add fork and pull request option
Browse files Browse the repository at this point in the history
  • Loading branch information
natedanner committed Feb 13, 2023
1 parent dd6ffb7 commit 77bfa25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencyCheck {
analyzers.assemblyEnabled = false
failBuildOnCVSS = 9.0F
suppressionFile = "suppressions.xml"
format = ReportGenerator.Format.valueOf(project.properties["dependencyCheckFormat"] as String? ?: "HTML")
format = project.properties["dependencyCheckFormat"] as String? ?: "HTML"
}

group = "io.moderne"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ public enum CommitOption {

Fork,

PullRequest
PullRequest,

ForkAndPullRequest
}
1 change: 1 addition & 0 deletions src/main/resources/schema/moderne-organizations.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ enum CommitOption {
Branch
Fork
PullRequest
ForkAndPullRequest
}

0 comments on commit 77bfa25

Please sign in to comment.