You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ac...@apache.org on 2017/08/17 11:53:40 UTC

[1/3] incubator-weex git commit: * [test] update danger to fix notdanger valid

Repository: incubator-weex
Updated Branches:
  refs/heads/0.16-dev 6589d5bd6 -> e2b13c16a


* [test] update danger to fix notdanger valid


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/9d5744f9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/9d5744f9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/9d5744f9

Branch: refs/heads/0.16-dev
Commit: 9d5744f9e78b3e9ecd6944de7b9688bc5974a62a
Parents: 4fd66f1
Author: gurisxie <27...@qq.com>
Authored: Thu Aug 17 17:20:57 2017 +0800
Committer: gurisxie <27...@qq.com>
Committed: Thu Aug 17 17:20:57 2017 +0800

----------------------------------------------------------------------
 dangerfile.js | 22 +++++++++++++++++-----
 1 file changed, 17 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/9d5744f9/dangerfile.js
----------------------------------------------------------------------
diff --git a/dangerfile.js b/dangerfile.js
index 1105cf1..c5324c9 100644
--- a/dangerfile.js
+++ b/dangerfile.js
@@ -71,11 +71,23 @@ if (unFlowedFiles.length > 0) {
 
 // Error or Warn when delete public interface
 var isNotDanger = false;
-for (let c of danger.git.commits) {
-  // console.log("msg:" + c.message);
-  if (c.message && c.message.match(/@notdanger/i)) {
-    isNotDanger = true;
-    break;
+console.log('pr_title:'+danger.github.pr_title)
+if(!isNotDanger && danger.github.pr_title 
+  && danger.github.pr_title.match(/@notdanger/i)){
+  isNotDanger = true;
+}
+console.log('pr_body:'+danger.github.pr_body)
+if(!isNotDanger && danger.github.pr_body 
+  && danger.github.pr_body.match(/@notdanger/i)){
+  isNotDanger = true;
+}
+if(!isNotDanger){
+  for (let c of danger.git.commits) {
+    // console.log("msg:" + c.message);
+    if (c.message && c.message.match(/@notdanger/i)) {
+      isNotDanger = true;
+      break;
+    }
   }
 }
 


[2/3] incubator-weex git commit: * [test] danger file change

Posted by ac...@apache.org.
* [test] danger file change


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/43f34f2e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/43f34f2e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/43f34f2e

Branch: refs/heads/0.16-dev
Commit: 43f34f2efc8c705d60f129fefb3861a3ac428e1d
Parents: 9d5744f
Author: gurisxie <27...@qq.com>
Authored: Thu Aug 17 17:34:59 2017 +0800
Committer: gurisxie <27...@qq.com>
Committed: Thu Aug 17 17:34:59 2017 +0800

----------------------------------------------------------------------
 dangerfile.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/43f34f2e/dangerfile.js
----------------------------------------------------------------------
diff --git a/dangerfile.js b/dangerfile.js
index c5324c9..2be4b60 100644
--- a/dangerfile.js
+++ b/dangerfile.js
@@ -71,14 +71,14 @@ if (unFlowedFiles.length > 0) {
 
 // Error or Warn when delete public interface
 var isNotDanger = false;
-console.log('pr_title:'+danger.github.pr_title)
-if(!isNotDanger && danger.github.pr_title 
-  && danger.github.pr_title.match(/@notdanger/i)){
+console.log('pr.title:'+danger.github.pr.title)
+if(!isNotDanger && danger.github.pr.title 
+  && danger.github.pr.title.match(/@notdanger/i)){
   isNotDanger = true;
 }
-console.log('pr_body:'+danger.github.pr_body)
-if(!isNotDanger && danger.github.pr_body 
-  && danger.github.pr_body.match(/@notdanger/i)){
+console.log('pr.body:'+danger.github.pr.body)
+if(!isNotDanger && danger.github.pr.body 
+  && danger.github.pr.body.match(/@notdanger/i)){
   isNotDanger = true;
 }
 if(!isNotDanger){


[3/3] incubator-weex git commit: Merge branch '0.16-dev' of https://git-wip-us.apache.org/repos/asf/incubator-weex into wip-us-0.16-dev

Posted by ac...@apache.org.
Merge branch '0.16-dev' of https://git-wip-us.apache.org/repos/asf/incubator-weex into wip-us-0.16-dev


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/e2b13c16
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/e2b13c16
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/e2b13c16

Branch: refs/heads/0.16-dev
Commit: e2b13c16a0d5cd36185e2072810160436474cc47
Parents: 43f34f2 6589d5b
Author: acton393 <zh...@gmail.com>
Authored: Thu Aug 17 19:53:58 2017 +0800
Committer: acton393 <zh...@gmail.com>
Committed: Thu Aug 17 19:53:58 2017 +0800

----------------------------------------------------------------------
 html5/render/browser/extend/api/storage.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------