mirror of
https://github.com/actions/labeler
synced 2026-05-05 03:07:49 +02:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import {Minimatch} from 'minimatch';
|
|
|
|
export const printPattern = (matcher: Minimatch): string => {
|
|
return (matcher.negate ? '!' : '') + matcher.pattern;
|
|
};
|