We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bda66e commit c4c872aCopy full SHA for c4c872a
lib.js
@@ -54,7 +54,7 @@ function isSHA(id) {
54
* @return {Promise} - Resolved to full commit SHA.
55
*/
56
function fetchCommit(id, isBranch = null, module) {
57
- isBranch = isBranch === null ? !lib.isSHA(id) : isBranch;
+ isBranch = isBranch === null ? !isSHA(id) : isBranch;
58
const data = {
59
owner: process.env['REPO_OWNER'],
60
repo: module || process.env.REPO_NAME,
0 commit comments