1
0
mirror of https://github.com/actions/labeler synced 2026-05-05 11:17:48 +02:00

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

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, {