Skip to content

Commit

Permalink
Fix node_id Issue #11
Browse files Browse the repository at this point in the history
  • Loading branch information
bluespuke committed Jan 20, 2023
1 parent 7ca09df commit 5654e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = class GitSync {
log.debug(config);

// Temporary fix until support of PRs
if (config.issue.nodeId.startsWith("PR_")) {
if (config.issue.node_id.startsWith("PR_")) {
// Log and skip PRs (comments)
log.info(`Action is performed on PR #${config.issue.number}. Skipping...`);
} else {
Expand Down

0 comments on commit 5654e6d

Please sign in to comment.