Skip to content

Commit 0f224fd

Browse files
committed
resolve conflict
2 parents 6fd49d1 + 98503fe commit 0f224fd

191 files changed

Lines changed: 20645 additions & 5970 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/javascript/authorChecklist/index.js

Lines changed: 134 additions & 20 deletions
Large diffs are not rendered by default.

.github/actions/javascript/awaitStagingDeploys/index.js

Lines changed: 134 additions & 20 deletions
Large diffs are not rendered by default.

.github/actions/javascript/checkAndroidStatus/index.js

Lines changed: 134 additions & 20 deletions
Large diffs are not rendered by default.

.github/actions/javascript/checkDeployBlockers/index.js

Lines changed: 134 additions & 20 deletions
Large diffs are not rendered by default.

.github/actions/javascript/createOrUpdateStagingDeploy/createOrUpdateStagingDeploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async function run(): Promise<IssuesCreateResponse | void> {
5555
const currentChecklistData: StagingDeployCashData | undefined = shouldCreateNewDeployChecklist ? undefined : GithubUtils.getStagingDeployCashData(mostRecentChecklist);
5656

5757
// Find the list of PRs merged between the current checklist and the previous checklist
58-
const mergedPRs = await GitUtils.getPullRequestsMergedBetween(previousChecklistData.tag, newStagingTag);
58+
const mergedPRs = await GitUtils.getPullRequestsDeployedBetween(previousChecklistData.tag, newStagingTag);
5959

6060
// Next, we generate the checklist body
6161
let checklistBody = '';

.github/actions/javascript/createOrUpdateStagingDeploy/index.js

Lines changed: 180 additions & 29 deletions
Large diffs are not rendered by default.

.github/actions/javascript/getArtifactInfo/index.js

Lines changed: 134 additions & 20 deletions
Large diffs are not rendered by default.

.github/actions/javascript/getDeployPullRequestList/getDeployPullRequestList.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async function run() {
6060
}
6161

6262
console.log(`Looking for PRs deployed to ${deployEnv} between ${priorTag} and ${inputTag}`);
63-
const prList = await GitUtils.getPullRequestsMergedBetween(priorTag, inputTag);
63+
const prList = await GitUtils.getPullRequestsDeployedBetween(priorTag, inputTag);
6464
console.log('Found the pull request list: ', prList);
6565
core.setOutput('PR_LIST', prList);
6666
} catch (error) {

.github/actions/javascript/getDeployPullRequestList/index.js

Lines changed: 180 additions & 29 deletions
Large diffs are not rendered by default.

.github/actions/javascript/getPreviousVersion/index.js

Lines changed: 10810 additions & 1364 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)