Skip to content

Commit

Permalink
Merge pull request #407 from notsudo/GHCreateRepositoryBuilder_Add_Me…
Browse files Browse the repository at this point in the history
…rge_Settings

Adding merge settings to GHCreateRepositoryBuilder
  • Loading branch information
kohsuke authored Jan 13, 2018
2 parents 6effd4b + df861f5 commit e66f71c
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions src/main/java/org/kohsuke/github/GHCreateRepositoryBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class GHCreateRepositoryBuilder {
}

public GHCreateRepositoryBuilder description(String description) {
this.builder.with("description",description);
return this;
this.builder.with("description",description);
return this;
}

public GHCreateRepositoryBuilder homepage(URL homepage) {
Expand Down Expand Up @@ -74,6 +74,30 @@ public GHCreateRepositoryBuilder autoInit(boolean b) {
return this;
}

/**
* Allow or disallow squash-merging pull requests.
*/
public GHCreateRepositoryBuilder allowSquashMerge(boolean b) {
this.builder.with("allow_squash_merge",b);
return this;
}

/**
* Allow or disallow merging pull requests with a merge commit.
*/
public GHCreateRepositoryBuilder allowMergeCommit(boolean b) {
this.builder.with("allow_merge_commit",b);
return this;
}

/**
* Allow or disallow rebase-merging pull requests.
*/
public GHCreateRepositoryBuilder allowRebaseMerge(boolean b) {
this.builder.with("allow_rebase_merge",b);
return this;
}

/**
* Creates a default .gitignore
*
Expand Down

0 comments on commit e66f71c

Please sign in to comment.