Skip to content

Commit 5de9d50

Browse files
committed
Merge branch 'main' into fix/63894
2 parents 09e9990 + 9a1b8da commit 5de9d50

856 files changed

Lines changed: 24472 additions & 8873 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.

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ const restrictedImportPaths = [
100100
name: 'react-native-animatable',
101101
message: "Please use 'react-native-reanimated' instead.",
102102
},
103+
{
104+
name: 'react-native-onyx',
105+
importNames: ['useOnyx'],
106+
message: "Please use '@hooks/useOnyx' instead.",
107+
},
103108
];
104109

105110
const restrictedImportPatterns = [
@@ -225,6 +230,7 @@ module.exports = {
225230
'rulesdir/no-multiple-onyx-in-file': 'off',
226231
'rulesdir/prefer-underscore-method': 'off',
227232
'rulesdir/prefer-import-module-contents': 'off',
233+
'rulesdir/no-beta-handler': 'error',
228234

229235
// React and React Native specific rules
230236
'react-native-a11y/has-accessibility-hint': ['off'],

.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.

0 commit comments

Comments
 (0)