From 954b537e0d115740b8b1b86dd1062c47054f2f83 Mon Sep 17 00:00:00 2001 From: Payman Delshad Date: Thu, 3 Apr 2025 20:18:50 +0200 Subject: [PATCH] PEAKON-2516: fix typo --- .github/workflows/jira-pr-title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jira-pr-title.yml b/.github/workflows/jira-pr-title.yml index d397cc1..27a7685 100644 --- a/.github/workflows/jira-pr-title.yml +++ b/.github/workflows/jira-pr-title.yml @@ -67,7 +67,7 @@ jobs: if (!jiraPattern.test(prTitle)) { console.log('2. Adding `[PEAKON-2516]` prefix to PR title'); const title = `[PEAKON-2516] ${prTitle}`; - await github.rest.pulls.update({owener, repo, pull_number, title}); + await github.rest.pulls.update({owner, repo, pull_number, title}); } } else if (!jiraPattern.test(prTitle)) { core.setFailed('Cannot find a JIRA ticket in the PR title');