Fix spelling

This commit is contained in:
Sergey Dolin 2023-07-25 11:48:11 +02:00
parent 19b0faf982
commit dbb041abe2
2 changed files with 8 additions and 8 deletions

8
dist/index.js vendored
View File

@ -1615,7 +1615,7 @@ const getOctokitClient = () => {
const token = core.getInput('repo-token');
return (0, github_1.getOctokit)(token, undefined, plugin_retry_1.retry);
};
const checkCacheExist = (cacheKey) => __awaiter(void 0, void 0, void 0, function* () {
const checkIfCacheExists = (cacheKey) => __awaiter(void 0, void 0, void 0, function* () {
const client = getOctokitClient();
try {
const issueResult = yield client.request(`/repos/${github_1.context.repo.owner}/${github_1.context.repo.repo}/actions/caches`);
@ -1623,7 +1623,7 @@ const checkCacheExist = (cacheKey) => __awaiter(void 0, void 0, void 0, function
return Boolean(caches.find(cache => cache['key'] === cacheKey));
}
catch (error) {
core.debug(`$Error checking if cache exist: ${error.message}`);
core.debug(`Error checking if cache exist: ${error.message}`);
}
return false;
});
@ -1672,8 +1672,8 @@ class StateCacheStorage {
const filePath = path_1.default.join(tmpDir, STATE_FILE);
unlinkSafely(filePath);
try {
const cacheExist = yield checkCacheExist(CACHE_KEY);
if (!cacheExist) {
const cacheExists = yield checkIfCacheExists(CACHE_KEY);
if (!cacheExists) {
core.info('The saved state was not found, the process starts from the first issue.');
return '';
}

View File

@ -30,7 +30,7 @@ const getOctokitClient = () => {
return getOctokit(token, undefined, octokitRetry);
};
const checkCacheExist = async (cacheKey: string): Promise<boolean> => {
const checkIfCacheExists = async (cacheKey: string): Promise<boolean> => {
const client = getOctokitClient();
try {
const issueResult = await client.request(
@ -40,7 +40,7 @@ const checkCacheExist = async (cacheKey: string): Promise<boolean> => {
issueResult.data['actions_caches'] || [];
return Boolean(caches.find(cache => cache['key'] === cacheKey));
} catch (error) {
core.debug(`$Error checking if cache exist: ${error.message}`);
core.debug(`Error checking if cache exist: ${error.message}`);
}
return false;
};
@ -92,8 +92,8 @@ export class StateCacheStorage implements IStateStorage {
const filePath = path.join(tmpDir, STATE_FILE);
unlinkSafely(filePath);
try {
const cacheExist = await checkCacheExist(CACHE_KEY);
if (!cacheExist) {
const cacheExists = await checkIfCacheExists(CACHE_KEY);
if (!cacheExists) {
core.info(
'The saved state was not found, the process starts from the first issue.'
);