From 20cc95a744b45c5178fe4209afc0a23bfedc2405 Mon Sep 17 00:00:00 2001 From: Andrea Lamparelli Date: Thu, 20 Jul 2023 10:23:01 +0200 Subject: [PATCH] chore(do not merge): test --- dist/cli/index.js | 2 +- dist/gha/index.js | 2 +- src/service/git/github/github-client.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/cli/index.js b/dist/cli/index.js index 4873d1c..6a4e665 100755 --- a/dist/cli/index.js +++ b/dist/cli/index.js @@ -683,7 +683,7 @@ class GitHubClient { body: backport.body, }); if (!data) { - throw new Error("Pull request creation failed"); + throw new Error("Pull request creation failed :("); } const promises = []; if (backport.labels.length > 0) { diff --git a/dist/gha/index.js b/dist/gha/index.js index cf28269..60f1250 100755 --- a/dist/gha/index.js +++ b/dist/gha/index.js @@ -654,7 +654,7 @@ class GitHubClient { body: backport.body, }); if (!data) { - throw new Error("Pull request creation failed"); + throw new Error("Pull request creation failed :("); } const promises = []; if (backport.labels.length > 0) { diff --git a/src/service/git/github/github-client.ts b/src/service/git/github/github-client.ts index 0da22df..51ae99c 100644 --- a/src/service/git/github/github-client.ts +++ b/src/service/git/github/github-client.ts @@ -79,7 +79,7 @@ export default class GitHubClient implements GitClient { }); if (!data) { - throw new Error("Pull request creation failed"); + throw new Error("Pull request creation failed :("); } const promises = [];