From dfb6d0e2f52d87614f678f402ae4a5563cc547cf Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Mon, 9 Dec 2024 17:38:41 +0900 Subject: [PATCH] GH-44968: [CI][Dev] Remove nonexistent `getJiraInfo` reference (#44972) ### Rationale for this change It's removed by #44936. ### What changes are included in this PR? Remove `getJiraInfo` from `exports`. ### Are these changes tested? No. But this will resolve the reported error. ### Are there any user-facing changes? No. Authored-by: Sutou Kouhei Signed-off-by: Antoine Pitrou --- .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 };