From 7f67468173e95fd70dcae96fc311332c3f868905 Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Thu, 9 Jan 2025 09:24:19 -0800 Subject: [PATCH] fix: correct GitHub brand capitalization in provider 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...' }, } },