Spell evenName in the logs correctly

This commit is contained in:
Sviatoslav Sydorenko (Святослав Сидоренко) 2024-08-27 18:33:04 +02:00 committed by GitHub
parent 2439dfc05c
commit 2de5cb862a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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