Merge branch 'main' into v4-general-refactoring

This commit is contained in:
Nikolai Laevskii
2023-08-02 06:25:30 +02:00
5 changed files with 1895 additions and 1502 deletions
+2 -2
View File
@@ -19,14 +19,14 @@ export const getLabelGlobs = (
.then(() => {
if (!fs.existsSync(configurationPath)) {
core.info(
`The configuration file (path: ${configurationPath}) isn't not found locally, fetching via the api`
`The configuration file (path: ${configurationPath}) was not found locally, fetching via the api`
);
return getContent(client, configurationPath);
}
core.info(
`The configuration file (path: ${configurationPath}) is found locally, reading from the file`
`The configuration file (path: ${configurationPath}) was found locally, reading from the file`
);
return fs.readFileSync(configurationPath, {