captain-log
Advanced tools
Comparing version 0.1.5 to 0.2.0
12
index.js
@@ -52,2 +52,14 @@ const request = require('request') | ||
} | ||
if (config.type) { | ||
if (config.type == 'pr') { | ||
if (!d.pull_request) { | ||
return false | ||
} | ||
} | ||
if (config.type == 'issue') { | ||
if (d.pull_request) { | ||
return false | ||
} | ||
} | ||
} | ||
if (config.todo) { | ||
@@ -54,0 +66,0 @@ prefix += ` [${d.state === 'closed' ? 'x' : ' '}]` |
{ | ||
"name": "captain-log", | ||
"version": "0.1.5", | ||
"version": "0.2.0", | ||
"description": "The log from your favorite captains", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6881
139