diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ffd4b7ac..8b42e6ca 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 diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 5cd789a5..b40dcfb6 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: "Give your feature request a title" +labels: ["type: feature-request"] body: - type: markdown attributes: diff --git a/libraries/nestjs-libraries/src/services/trending.service.ts b/libraries/nestjs-libraries/src/services/trending.service.ts index ba7ada04..09ccb584 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 +}