From c9d09c3d1e96017dfac5671aaf6cc4e6f667ccab Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 16 Sep 2024 09:38:12 +0100 Subject: [PATCH 1/4] bugfix: Improve log message for GitHub trending update --- libraries/nestjs-libraries/src/services/trending.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/nestjs-libraries/src/services/trending.service.ts b/libraries/nestjs-libraries/src/services/trending.service.ts index ba7ada044..09ccb5844 100644 --- a/libraries/nestjs-libraries/src/services/trending.service.ts +++ b/libraries/nestjs-libraries/src/services/trending.service.ts @@ -23,8 +23,8 @@ export class TrendingService { }); const hashedNames = md5(arr.map(p => p.name).join('')); - console.log(language, hashedNames); + console.log('Updating GitHub trending topic', language, hashedNames); await this._starsService.updateTrending(language.name, hashedNames, arr); } } -} \ No newline at end of file +} From aba468eef8d070f898ac6173e71c48d88313f71a Mon Sep 17 00:00:00 2001 From: James Read Date: Mon, 16 Sep 2024 14:36:39 +0100 Subject: [PATCH 2/4] Update feature request template to include tag --- .github/ISSUE_TEMPLATE/feature_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5cd789a5c..afea9db72 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ name: 🚀 Feature description: "Submit a proposal for a new feature" -title: "🚀 Feature: " -labels: [feature] +title: "" +labels: ["type: feature-request"] body: - type: markdown attributes: From b1d2d8e0ab081c10c1d30602c552f3b650e0a463 Mon Sep 17 00:00:00 2001 From: James Read Date: Mon, 16 Sep 2024 14:37:42 +0100 Subject: [PATCH 3/4] Add tag to feature request template --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index afea9db72..b40dcfb68 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: 🚀 Feature description: "Submit a proposal for a new feature" -title: "" +title: "Give your feature request a title" labels: ["type: feature-request"] body: - type: markdown From edc60172e33ee357f16861c879bdb0650898f849 Mon Sep 17 00:00:00 2001 From: James Read Date: Mon, 16 Sep 2024 14:38:07 +0100 Subject: [PATCH 4/4] Remove "Bug report:" from title --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ffd4b7ace..8b42e6ca6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: "🐛 Bug Report" description: "Submit a bug report to help us improve,\nif you have a problem installing the app please join our https://discord.postiz.com instead for help." -title: "🐛 Bug Report: " +title: "Give your bug report a good title " labels: ["type: bug"] body: - type: markdown