From c6fa1330335c5c7363b21f9fc4545ecb2d54d4b8 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Wed, 15 Jan 2025 01:21:44 -0800 Subject: [PATCH] fix: correct GitHub brand capitalization in provider (#222) This change ensures the GitHub brand name is capitalized correctly in the provider module. --- provider/github/provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/github/provider.ts b/provider/github/provider.ts index e0262c74..3e2dba9a 100644 --- a/provider/github/provider.ts +++ b/provider/github/provider.ts @@ -7,7 +7,7 @@ import type { Settings } from './settings.js' export const githubProvider: Provider = { meta(): MetaResult { return { - name: 'Github PRs & Issues', + name: 'GitHub PRs & Issues', mentions: { label: 'Search issues and pull requests...' }, } },