Skip to content

Commit 0c2dbac

Browse files
merge main
2 parents f8bfd09 + fe7b344 commit 0c2dbac

225 files changed

Lines changed: 62117 additions & 2702 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.

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ FB_APP_ID=YOUR_APP_ID
3838
FB_PROJECT_ID=YOUR_PROJECT_ID
3939

4040
GITHUB_TOKEN=YOUR_TOKEN
41+
OPENAI_API_KEY=YOUR_TOKEN

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ module.exports = {
292292
'@libs': './src/libs',
293293
'@navigation': './src/libs/Navigation',
294294
'@pages': './src/pages',
295+
'@prompts': './prompts',
295296
'@styles': './src/styles',
296297
// This path is provide alias for files like `ONYXKEYS` and `CONST`.
297298
'@src': './src',

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15475,12 +15475,7 @@ const CONST = {
1547515475
EVENTS: {
1547615476
ISSUE_COMMENT: 'issue_comment',
1547715477
},
15478-
OPENAI_ROLES: {
15479-
USER: 'user',
15480-
ASSISTANT: 'assistant',
15481-
},
1548215478
PROPOSAL_KEYWORD: 'Proposal',
15483-
OPENAI_THREAD_COMPLETED: 'completed',
1548415479
DATE_FORMAT_STRING: 'yyyy-MM-dd',
1548515480
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
1548615481
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -15491,8 +15486,6 @@ const CONST = {
1549115486
NO_ACTION: 'NO_ACTION',
1549215487
ACTION_EDIT: 'ACTION_EDIT',
1549315488
ACTION_REQUIRED: 'ACTION_REQUIRED',
15494-
OPENAI_POLL_RATE: 1500,
15495-
OPENAI_POLL_TIMEOUT: 90000,
1549615489
};
1549715490
exports["default"] = CONST;
1549815491

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12268,12 +12268,7 @@ const CONST = {
1226812268
EVENTS: {
1226912269
ISSUE_COMMENT: 'issue_comment',
1227012270
},
12271-
OPENAI_ROLES: {
12272-
USER: 'user',
12273-
ASSISTANT: 'assistant',
12274-
},
1227512271
PROPOSAL_KEYWORD: 'Proposal',
12276-
OPENAI_THREAD_COMPLETED: 'completed',
1227712272
DATE_FORMAT_STRING: 'yyyy-MM-dd',
1227812273
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
1227912274
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -12284,8 +12279,6 @@ const CONST = {
1228412279
NO_ACTION: 'NO_ACTION',
1228512280
ACTION_EDIT: 'ACTION_EDIT',
1228612281
ACTION_REQUIRED: 'ACTION_REQUIRED',
12287-
OPENAI_POLL_RATE: 1500,
12288-
OPENAI_POLL_TIMEOUT: 90000,
1228912282
};
1229012283
exports["default"] = CONST;
1229112284

.github/actions/javascript/bumpVersion/bumpVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as core from '@actions/core';
2-
import bumpVersion from '@scripts/bumpVersion';
32
import * as versionUpdater from '@github/libs/versionUpdater';
3+
import bumpVersion from '@scripts/bumpVersion';
44

55
async function run() {
66
try {

.github/actions/javascript/bumpVersion/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3404,8 +3404,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
34043404
};
34053405
Object.defineProperty(exports, "__esModule", ({ value: true }));
34063406
const core = __importStar(__nccwpck_require__(2186));
3407-
const bumpVersion_1 = __importDefault(__nccwpck_require__(3891));
34083407
const versionUpdater = __importStar(__nccwpck_require__(8982));
3408+
const bumpVersion_1 = __importDefault(__nccwpck_require__(3891));
34093409
async function run() {
34103410
try {
34113411
const semverLevel = core.getInput('SEMVER_LEVEL', { required: true });

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -736968,12 +736968,7 @@ const CONST = {
736968736968
EVENTS: {
736969736969
ISSUE_COMMENT: 'issue_comment',
736970736970
},
736971-
OPENAI_ROLES: {
736972-
USER: 'user',
736973-
ASSISTANT: 'assistant',
736974-
},
736975736971
PROPOSAL_KEYWORD: 'Proposal',
736976-
OPENAI_THREAD_COMPLETED: 'completed',
736977736972
DATE_FORMAT_STRING: 'yyyy-MM-dd',
736978736973
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
736979736974
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -736984,8 +736979,6 @@ const CONST = {
736984736979
NO_ACTION: 'NO_ACTION',
736985736980
ACTION_EDIT: 'ACTION_EDIT',
736986736981
ACTION_REQUIRED: 'ACTION_REQUIRED',
736987-
OPENAI_POLL_RATE: 1500,
736988-
OPENAI_POLL_TIMEOUT: 90000,
736989736982
};
736990736983
exports["default"] = CONST;
736991736984

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11551,12 +11551,7 @@ const CONST = {
1155111551
EVENTS: {
1155211552
ISSUE_COMMENT: 'issue_comment',
1155311553
},
11554-
OPENAI_ROLES: {
11555-
USER: 'user',
11556-
ASSISTANT: 'assistant',
11557-
},
1155811554
PROPOSAL_KEYWORD: 'Proposal',
11559-
OPENAI_THREAD_COMPLETED: 'completed',
1156011555
DATE_FORMAT_STRING: 'yyyy-MM-dd',
1156111556
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
1156211557
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -11567,8 +11562,6 @@ const CONST = {
1156711562
NO_ACTION: 'NO_ACTION',
1156811563
ACTION_EDIT: 'ACTION_EDIT',
1156911564
ACTION_REQUIRED: 'ACTION_REQUIRED',
11570-
OPENAI_POLL_RATE: 1500,
11571-
OPENAI_POLL_TIMEOUT: 90000,
1157211565
};
1157311566
exports["default"] = CONST;
1157411567

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11617,12 +11617,7 @@ const CONST = {
1161711617
EVENTS: {
1161811618
ISSUE_COMMENT: 'issue_comment',
1161911619
},
11620-
OPENAI_ROLES: {
11621-
USER: 'user',
11622-
ASSISTANT: 'assistant',
11623-
},
1162411620
PROPOSAL_KEYWORD: 'Proposal',
11625-
OPENAI_THREAD_COMPLETED: 'completed',
1162611621
DATE_FORMAT_STRING: 'yyyy-MM-dd',
1162711622
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
1162811623
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -11633,8 +11628,6 @@ const CONST = {
1163311628
NO_ACTION: 'NO_ACTION',
1163411629
ACTION_EDIT: 'ACTION_EDIT',
1163511630
ACTION_REQUIRED: 'ACTION_REQUIRED',
11636-
OPENAI_POLL_RATE: 1500,
11637-
OPENAI_POLL_TIMEOUT: 90000,
1163811631
};
1163911632
exports["default"] = CONST;
1164011633

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11512,12 +11512,7 @@ const CONST = {
1151211512
EVENTS: {
1151311513
ISSUE_COMMENT: 'issue_comment',
1151411514
},
11515-
OPENAI_ROLES: {
11516-
USER: 'user',
11517-
ASSISTANT: 'assistant',
11518-
},
1151911515
PROPOSAL_KEYWORD: 'Proposal',
11520-
OPENAI_THREAD_COMPLETED: 'completed',
1152111516
DATE_FORMAT_STRING: 'yyyy-MM-dd',
1152211517
PULL_REQUEST_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/pull/([0-9]+).*`),
1152311518
ISSUE_REGEX: new RegExp(`${GITHUB_BASE_URL_REGEX.source}/.*/.*/issues/([0-9]+).*`),
@@ -11528,8 +11523,6 @@ const CONST = {
1152811523
NO_ACTION: 'NO_ACTION',
1152911524
ACTION_EDIT: 'ACTION_EDIT',
1153011525
ACTION_REQUIRED: 'ACTION_REQUIRED',
11531-
OPENAI_POLL_RATE: 1500,
11532-
OPENAI_POLL_TIMEOUT: 90000,
1153311526
};
1153411527
exports["default"] = CONST;
1153511528

0 commit comments

Comments
 (0)