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 59be562 commit c2b2bddCopy full SHA for c2b2bdd
src/prActions.ts
@@ -8,7 +8,10 @@ const execute = async (
8
if (label === "giteabot/update-branch") {
9
const err = await updateBranch(pr);
10
if (err) {
11
- await addComment(pr.number, `I failed to update the branch because of the following error: ${err.message} Sorry about that. :tea:`);
+ await addComment(
12
+ pr.number,
13
+ `I failed to update the branch because of the following error: ${err.message} Sorry about that. :tea:`,
14
+ );
15
return;
16
}
17
await removeLabel(pr.number, "giteabot/update-branch");
0 commit comments