From e73cd0952e2a49b7452e6b364280cf6c03d7b896 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Mon, 9 Dec 2024 13:18:31 +0900 Subject: [PATCH] GH-44968: [CI][Dev] Remove nonexistent getJiraInfo reference It's removed by #44936. --- .github/workflows/dev_pr/helpers.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dev_pr/helpers.js b/.github/workflows/dev_pr/helpers.js index 1a93b428e0a95..222d2213771cf 100644 --- a/.github/workflows/dev_pr/helpers.js +++ b/.github/workflows/dev_pr/helpers.js @@ -20,7 +20,7 @@ const https = require('https'); /** * Given the title of a PullRequest return the Issue * - * @param {String} title + * @param {String} title * @returns {Issue} or null if no issue detected. * * @typedef {Object} Issue @@ -62,6 +62,5 @@ function detectIssue(title) { module.exports = { detectIssue, - getJiraInfo, getGitHubInfo };