Skip to content

Commit d093358

Browse files
committed
Meta: rename maintainer user
1 parent 2a26f92 commit d093358

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const isRepo = (): boolean => /^[^/]+\/[^/]+/.test(getCleanPathname()) &&
8282
!isRepoSearch();
8383

8484
export const isRepoDiscussionList = (): boolean =>
85-
/^(issues|pulls)($|\/$|\/(?!\d+|new))/.test(getRepoPath()!) || // `issues/bfred-it` is a list but `issues/1` isn't
85+
/^(issues|pulls)($|\/$|\/(?!\d+|new))/.test(getRepoPath()!) || // `issues/fregante` is a list but `issues/1` isn't
8686
/^labels\/.+/.test(getRepoPath()!);
8787

8888
export const isRepoRoot = (): boolean => /^(tree[/][^/]+)?$/.test(getRepoPath()!);

test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ test('isRepoDiscussionList', urlMatcherMacro, pageDetect.isRepoDiscussionList, [
154154
'http://github.com/sindresorhus/ava/issues',
155155
'https://github.com/sindresorhus/refined-github/pulls',
156156
'https://github.com/sindresorhus/refined-github/pulls/',
157-
'https://github.com/sindresorhus/refined-github/pulls/bfred-it',
158-
'https://github.com/sindresorhus/refined-github/issues/bfred-it',
157+
'https://github.com/sindresorhus/refined-github/pulls/fregante',
158+
'https://github.com/sindresorhus/refined-github/issues/fregante',
159159
'https://github.com/sindresorhus/refined-github/labels/Priority%3A%20critical',
160160
'https://github.com/sindresorhus/refined-github/issues?q=is%3Aclosed+sort%3Aupdated-desc'
161161
], [

0 commit comments

Comments
 (0)