You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/05/05 22:53:21 UTC

[1/3] cordova-coho git commit: Add URL of github for pull requests to `list-pulls` command

Repository: cordova-coho
Updated Branches:
  refs/heads/master bc4e8d595 -> a2ac092e3


Add URL of github for pull requests to `list-pulls` command


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/f88229a5
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/f88229a5
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/f88229a5

Branch: refs/heads/master
Commit: f88229a521496191e0a9b59606517b3ce0683d50
Parents: 607322c
Author: Nikhil Khandelwal <ni...@microsoft.com>
Authored: Tue May 5 11:29:40 2015 -0700
Committer: Nikhil Khandelwal <ni...@microsoft.com>
Committed: Tue May 5 12:33:36 2015 -0700

----------------------------------------------------------------------
 src/list-pulls.js | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/f88229a5/src/list-pulls.js
----------------------------------------------------------------------
diff --git a/src/list-pulls.js b/src/list-pulls.js
index 82aaf6e..c0ee899 100644
--- a/src/list-pulls.js
+++ b/src/list-pulls.js
@@ -154,7 +154,7 @@ function *listPullRequestsCommand() {
         process.exit(1);
     }
 
-    var repos = flagutil.computeReposFromFlag(argv.r)
+    var repos = flagutil.computeReposFromFlag(argv.r);
 
     function next() {
         if (repos.length) {
@@ -162,6 +162,12 @@ function *listPullRequestsCommand() {
             listGitHubPullRequests(repo.repoName, argv['max-age'], argv['hide-user'], next);
         }
     }
+    
+    var url = 'https://github.com/pulls?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr';
+    repos.forEach(function(repo) {
+        url += '+repo%3Aapache%2F' + repo.repoName;
+    });
+    console.log(url);
     next();
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/3] cordova-coho git commit: Merge branch 'pull_url' of https://github.com/MSOpenTech/cordova-coho

Posted by st...@apache.org.
Merge branch 'pull_url' of https://github.com/MSOpenTech/cordova-coho


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/a2ac092e
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/a2ac092e
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/a2ac092e

Branch: refs/heads/master
Commit: a2ac092e3213b62d1f34edbf443d02edf3f346e7
Parents: 750e468 f88229a
Author: Steve Gill <st...@gmail.com>
Authored: Tue May 5 13:51:48 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Tue May 5 13:51:48 2015 -0700

----------------------------------------------------------------------
 src/list-pulls.js | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/3] cordova-coho git commit: added step to release specific plugins in plugins release process

Posted by st...@apache.org.
added step to release specific plugins in plugins release process

Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/750e4687
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/750e4687
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/750e4687

Branch: refs/heads/master
Commit: 750e4687aaaea1008cb0ce96ae73697f1ec642e0
Parents: bc4e8d5
Author: Steve Gill <st...@adobe.com>
Authored: Tue May 5 13:50:11 2015 -0700
Committer: Steve Gill <st...@adobe.com>
Committed: Tue May 5 13:50:11 2015 -0700

----------------------------------------------------------------------
 docs/plugins-release-process.md | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/750e4687/docs/plugins-release-process.md
----------------------------------------------------------------------
diff --git a/docs/plugins-release-process.md b/docs/plugins-release-process.md
index bdac8c5..4fb818c 100644
--- a/docs/plugins-release-process.md
+++ b/docs/plugins-release-process.md
@@ -71,6 +71,11 @@ TODO: Should not mention testing other than checking medic
     ACTIVE=$(for l in cordova-plugin-*; do ( cd $l; last_release=$(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD); git log --pretty=format:'* %s' --topo-order --no-merges $last_release..master | grep -v "Incremented plugin version" > /dev/null && echo $l); done | xargs echo)
     echo $ACTIVE
 
+If you don't want to release all plugins, but you have specific plugins you want to release, you need to set `ACTIVE` equal to them.
+
+    ACTIVE="cordova-plugin-camera cordova-plugin-contacts cordova-plugin-device-motion"
+    echo $ACTIVE
+
 ## Ensure license headers are present everywhere:
 
     coho audit-license-headers -r plugins | less


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org