Skip to content

Commit

Permalink
add question mark in empty PR
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 28, 2022
1 parent 062a196 commit 4544efa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GitHub.omnifocusjs/Resources/pull.js
Expand Up @@ -57,7 +57,7 @@
project.note = `${issue.url}\n\n---\n\n${issue.body}`;
toFocus.push(project);
if (project.tasks.length === 0) {
new Task(`what needs to be done for ${repo}#${issue.number}`, project);
new Task(`what needs to be done for ${repo}#${issue.number}?`, project);
}
}
if (app.platformName === "macOS") {
Expand Down
2 changes: 1 addition & 1 deletion GitHub.omnifocusjs/Resources/pull.ts
Expand Up @@ -84,7 +84,7 @@
toFocus.push(project);

if (project.tasks.length === 0) {
new Task(`what needs to be done for ${repo}#${issue.number}`, project);
new Task(`what needs to be done for ${repo}#${issue.number}?`, project);
}
}

Expand Down

0 comments on commit 4544efa

Please sign in to comment.