@@ -419,10 +419,6 @@ collect.set('isSingleTag', [
419
419
'https://github.com/sindresorhus/refined-github/releases/tag/0.2.1' ,
420
420
] ) ;
421
421
422
- /** @deprecated use isSingleTag instead */
423
- export const isSingleTagPage = isSingleTag ;
424
- collect . set ( 'isSingleTagPage' , combinedTestOnly ) ;
425
-
426
422
collect . set ( 'hasComments' , combinedTestOnly ) ;
427
423
export const hasComments = ( url : URL | Location = location ) : boolean =>
428
424
isPR ( url ) ||
@@ -445,17 +441,13 @@ export const hasCode = (url: URL | Location = location): boolean => // Static co
445
441
isCompare ( url ) ||
446
442
isBlame ( url ) ;
447
443
448
- export const isActions = ( url : URL | Location = location ) : boolean => url . pathname . startsWith ( '/marketplace/actions/' ) ;
449
- collect . set ( 'isActions ' , [
444
+ export const isMarketplaceAction = ( url : URL | Location = location ) : boolean => url . pathname . startsWith ( '/marketplace/actions/' ) ;
445
+ collect . set ( 'isMarketplaceAction ' , [
450
446
'https://github.com/marketplace/actions/urlchecker-action' ,
451
447
'https://github.com/marketplace/actions/github-action-for-assignee-to-reviewer' ,
452
448
'https://github.com/marketplace/actions/hugo-actions' ,
453
449
] ) ;
454
450
455
- /** @deprecated use isActions instead */
456
- export const isActionPage = isActions ;
457
- collect . set ( 'isActionPage' , combinedTestOnly ) ;
458
-
459
451
export const isActionJobRun = ( url : URL | Location = location ) : boolean => String ( getRepoPath ( url ) ) . startsWith ( 'runs/' ) ;
460
452
collect . set ( 'isActionJobRun' , [
461
453
'https://github.com/sindresorhus/refined-github/runs/639481849' ,
0 commit comments