Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 7dac953

Browse files
author
Ryan Garant
committed
fix(pull-request): add option in config to use https instead of ssh
fix #436
1 parent ecc23c8 commit 7dac953

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1239,6 +1239,12 @@ You can also set per-project configurations by adding a `.gh.json` file in your
12391239
"signature": "<br><br>:octocat: *Sent from [GH](http://nodegh.io).*"
12401240
```
12411241

1242+
- Turn off ssh when pulling a repo and use https instead.
1243+
1244+
```javascript
1245+
"ssh": false,
1246+
```
1247+
12421248
If you need to use a custom git command, set the environment variable `GH_GIT_COMMAND`.
12431249

12441250
## Plugins

lib/cmds/pull-request.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ PullRequest.prototype.fetch = function(opt_type, opt_callback) {
337337
}
338338

339339
headBranch = pull.head.ref
340-
repoUrl = pull.head.repo.ssh_url
340+
repoUrl = config.ssh === false ? pull.head.repo.clone_url : pull.head.repo.ssh_url
341341

342342
git.fetch(repoUrl, headBranch, options.pullBranch)
343343

lib/default.gh.json

+4
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,9 @@
115115

116116
"replace": {},
117117

118+
"ssh": true,
119+
120+
"color": true,
121+
118122
"signature": " <br><br>:octocat: *Sent from [GH](http://nodegh.io).*"
119123
}

0 commit comments

Comments
 (0)