From a47f154531a8f0277eba918a7b429c53b6b750fd Mon Sep 17 00:00:00 2001 From: Alex Beaman Date: Thu, 4 Apr 2024 15:12:20 +0400 Subject: [PATCH 1/2] Fix github import --- .../authorChecklist/categories/newComponentCategory.ts | 2 +- .../getDeployPullRequestList/getDeployPullRequestList.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/javascript/authorChecklist/categories/newComponentCategory.ts b/.github/actions/javascript/authorChecklist/categories/newComponentCategory.ts index 71c413e5003bb..042d91a5b956e 100644 --- a/.github/actions/javascript/authorChecklist/categories/newComponentCategory.ts +++ b/.github/actions/javascript/authorChecklist/categories/newComponentCategory.ts @@ -1,4 +1,4 @@ -import github from '@actions/github'; +import * as github from '@actions/github'; import {parse} from '@babel/parser'; import traverse from '@babel/traverse'; import CONST from '@github/libs/CONST'; diff --git a/.github/actions/javascript/getDeployPullRequestList/getDeployPullRequestList.ts b/.github/actions/javascript/getDeployPullRequestList/getDeployPullRequestList.ts index 2ef789df76da3..ecf242f00cc20 100644 --- a/.github/actions/javascript/getDeployPullRequestList/getDeployPullRequestList.ts +++ b/.github/actions/javascript/getDeployPullRequestList/getDeployPullRequestList.ts @@ -1,5 +1,5 @@ import * as core from '@actions/core'; -import github from '@actions/github'; +import * as github from '@actions/github'; import {getJSONInput} from '@github/libs/ActionUtils'; import GithubUtils from '@github/libs/GithubUtils'; import GitUtils from '@github/libs/GitUtils'; From ce264929c02ae58796508e84e87ca75a0c0ba3cc Mon Sep 17 00:00:00 2001 From: Alex Beaman Date: Thu, 4 Apr 2024 15:13:29 +0400 Subject: [PATCH 2/2] Update built files --- .../javascript/authorChecklist/index.js | 27 +++++++++++++++++-- .../getDeployPullRequestList/index.js | 6 ++--- 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/.github/actions/javascript/authorChecklist/index.js b/.github/actions/javascript/authorChecklist/index.js index 7c2bcf8618b81..57e1cb785b2e1 100644 --- a/.github/actions/javascript/authorChecklist/index.js +++ b/.github/actions/javascript/authorChecklist/index.js @@ -16738,12 +16738,35 @@ exports["default"] = generateDynamicChecksAndCheckForCompletion; "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.detectReactComponent = void 0; -const github_1 = __importDefault(__nccwpck_require__(5438)); +const github = __importStar(__nccwpck_require__(5438)); const parser_1 = __nccwpck_require__(5026); const traverse_1 = __importDefault(__nccwpck_require__(1380)); const CONST_1 = __importDefault(__nccwpck_require__(9873)); @@ -16810,7 +16833,7 @@ async function detectReactComponentInFile(filename) { owner: CONST_1.default.GITHUB_OWNER, repo: CONST_1.default.APP_REPO, path: filename, - ref: github_1.default.context.payload.pull_request?.head.ref, + ref: github.context.payload.pull_request?.head.ref, }; try { const { data } = await GithubUtils_1.default.octokit.repos.getContent(params); diff --git a/.github/actions/javascript/getDeployPullRequestList/index.js b/.github/actions/javascript/getDeployPullRequestList/index.js index 3b845b6daa37b..883b6223a03b3 100644 --- a/.github/actions/javascript/getDeployPullRequestList/index.js +++ b/.github/actions/javascript/getDeployPullRequestList/index.js @@ -11498,7 +11498,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", ({ value: true })); const core = __importStar(__nccwpck_require__(2186)); -const github_1 = __importDefault(__nccwpck_require__(5438)); +const github = __importStar(__nccwpck_require__(5438)); const ActionUtils_1 = __nccwpck_require__(6981); const GithubUtils_1 = __importDefault(__nccwpck_require__(9296)); const GitUtils_1 = __importDefault(__nccwpck_require__(1547)); @@ -11509,8 +11509,8 @@ async function run() { const deployEnv = isProductionDeploy ? 'production' : 'staging'; console.log(`Looking for PRs deployed to ${deployEnv} in ${inputTag}...`); const completedDeploys = (await GithubUtils_1.default.octokit.actions.listWorkflowRuns({ - owner: github_1.default.context.repo.owner, - repo: github_1.default.context.repo.repo, + owner: github.context.repo.owner, + repo: github.context.repo.repo, // eslint-disable-next-line @typescript-eslint/naming-convention workflow_id: 'platformDeploy.yml', status: 'completed',