Merge remote-tracking branch 'u/main' into dot-option

This commit is contained in:
Alexander Kachkaev
2023-05-31 01:35:46 +01:00
6 changed files with 1215 additions and 1672 deletions

View File

@@ -22,7 +22,7 @@ const configureInput = (
mockInput: Partial<{
'repo-token': string;
'configuration-path': string;
'sync-labels': string;
'sync-labels': boolean;
dot: string;
}>
) => {
@@ -97,7 +97,7 @@ describe('run', () => {
configureInput({
'repo-token': 'foo',
'configuration-path': 'bar',
'sync-labels': 'true'
'sync-labels': true
});
usingLabelerConfigYaml('only_pdfs.yml');
@@ -124,7 +124,7 @@ describe('run', () => {
configureInput({
'repo-token': 'foo',
'configuration-path': 'bar',
'sync-labels': 'false'
'sync-labels': true
});
usingLabelerConfigYaml('only_pdfs.yml');