Spell evenName in the logs correctly (#1560)

This commit is contained in:
Sviatoslav Sydorenko (Святослав Сидоренко)
2024-09-05 22:22:46 +02:00
committed by GitHub
parent 0036103d21
commit 8bacbcdafc

View File

@@ -31,7 +31,7 @@ const getGitService = (): string => {
}; };
const isPullRequestFromFork = (): boolean => { const isPullRequestFromFork = (): boolean => {
core.info(`evenName: ${context.eventName}`); core.info(`eventName: ${context.eventName}`);
if (!['pull_request', 'pull_request_target'].includes(context.eventName)) { if (!['pull_request', 'pull_request_target'].includes(context.eventName)) {
return false; return false;
} }