You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/javascript/authorChecklist/index.js
+31-1Lines changed: 31 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15560,6 +15560,13 @@ const CONST = {
15560
15560
HELP_WANTED: 'Help Wanted',
15561
15561
CP_STAGING: 'CP Staging',
15562
15562
},
15563
+
STATE: {
15564
+
OPEN: 'open',
15565
+
},
15566
+
COMMENT: {
15567
+
TYPE_BOT: 'Bot',
15568
+
NAME_GITHUB_ACTIONS: 'github-actions',
15569
+
},
15563
15570
ACTIONS: {
15564
15571
CREATED: 'created',
15565
15572
EDITED: 'edited',
@@ -15578,6 +15585,7 @@ const CONST = {
15578
15585
NO_ACTION: 'NO_ACTION',
15579
15586
ACTION_EDIT: 'ACTION_EDIT',
15580
15587
ACTION_REQUIRED: 'ACTION_REQUIRED',
15588
+
ACTION_HIDE_DUPLICATE: 'ACTION_HIDE_DUPLICATE',
15581
15589
};
15582
15590
exports["default"] = CONST;
15583
15591
@@ -15834,7 +15842,10 @@ class GithubUtils {
15834
15842
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
15835
15843
// Tag version and comparison URL
15836
15844
// eslint-disable-next-line max-len
15837
-
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
15845
+
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n`;
15846
+
// Warn deployers about potential bugs with the new process
15847
+
issueBody +=
15848
+
'> 💡 **Deployer FYI:** This checklist was generated using a new process. PR list from original method and detail logging can be found in the most recent [deploy workflow](https://github.com/Expensify/App/actions/workflows/deploy.yml) labeled `staging`, in the `createChecklist` action. Please tag @Julesssss with any issues.\r\n\r\n';
15838
15849
// PR list
15839
15850
if (sortedPRList.length > 0) {
15840
15851
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
@@ -12307,6 +12307,23 @@ function getStringInput(name, options, defaultValue) {
12307
12307
return input;
12308
12308
}
12309
12309
exports.getStringInput = getStringInput;
12310
+
/**
12311
+
* Converts a value to a number, returning 0 for non-numeric values.
12312
+
*/
12313
+
function convertToNumber(value) {
12314
+
switch (typeof value) {
12315
+
case 'number':
12316
+
return value;
12317
+
case 'string':
12318
+
if (!Number.isNaN(Number(value))) {
12319
+
return Number(value);
12320
+
}
12321
+
return 0;
12322
+
default:
12323
+
return 0;
12324
+
}
12325
+
}
12326
+
exports.convertToNumber = convertToNumber;
12310
12327
12311
12328
12312
12329
/***/ }),
@@ -12334,6 +12351,13 @@ const CONST = {
12334
12351
HELP_WANTED: 'Help Wanted',
12335
12352
CP_STAGING: 'CP Staging',
12336
12353
},
12354
+
STATE: {
12355
+
OPEN: 'open',
12356
+
},
12357
+
COMMENT: {
12358
+
TYPE_BOT: 'Bot',
12359
+
NAME_GITHUB_ACTIONS: 'github-actions',
12360
+
},
12337
12361
ACTIONS: {
12338
12362
CREATED: 'created',
12339
12363
EDITED: 'edited',
@@ -12352,6 +12376,7 @@ const CONST = {
12352
12376
NO_ACTION: 'NO_ACTION',
12353
12377
ACTION_EDIT: 'ACTION_EDIT',
12354
12378
ACTION_REQUIRED: 'ACTION_REQUIRED',
12379
+
ACTION_HIDE_DUPLICATE: 'ACTION_HIDE_DUPLICATE',
12355
12380
};
12356
12381
exports["default"] = CONST;
12357
12382
@@ -12608,7 +12633,10 @@ class GithubUtils {
12608
12633
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
12609
12634
// Tag version and comparison URL
12610
12635
// eslint-disable-next-line max-len
12611
-
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
12636
+
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n`;
12637
+
// Warn deployers about potential bugs with the new process
12638
+
issueBody +=
12639
+
'> 💡 **Deployer FYI:** This checklist was generated using a new process. PR list from original method and detail logging can be found in the most recent [deploy workflow](https://github.com/Expensify/App/actions/workflows/deploy.yml) labeled `staging`, in the `createChecklist` action. Please tag @Julesssss with any issues.\r\n\r\n';
12612
12640
// PR list
12613
12641
if (sortedPRList.length > 0) {
12614
12642
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Copy file name to clipboardExpand all lines: .github/actions/javascript/checkAndroidStatus/index.js
+31-1Lines changed: 31 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -737053,6 +737053,13 @@ const CONST = {
737053
737053
HELP_WANTED: 'Help Wanted',
737054
737054
CP_STAGING: 'CP Staging',
737055
737055
},
737056
+
STATE: {
737057
+
OPEN: 'open',
737058
+
},
737059
+
COMMENT: {
737060
+
TYPE_BOT: 'Bot',
737061
+
NAME_GITHUB_ACTIONS: 'github-actions',
737062
+
},
737056
737063
ACTIONS: {
737057
737064
CREATED: 'created',
737058
737065
EDITED: 'edited',
@@ -737071,6 +737078,7 @@ const CONST = {
737071
737078
NO_ACTION: 'NO_ACTION',
737072
737079
ACTION_EDIT: 'ACTION_EDIT',
737073
737080
ACTION_REQUIRED: 'ACTION_REQUIRED',
737081
+
ACTION_HIDE_DUPLICATE: 'ACTION_HIDE_DUPLICATE',
737074
737082
};
737075
737083
exports["default"] = CONST;
737076
737084
@@ -737327,7 +737335,10 @@ class GithubUtils {
737327
737335
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
737328
737336
// Tag version and comparison URL
737329
737337
// eslint-disable-next-line max-len
737330
-
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
737338
+
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n`;
737339
+
// Warn deployers about potential bugs with the new process
737340
+
issueBody +=
737341
+
'> 💡 **Deployer FYI:** This checklist was generated using a new process. PR list from original method and detail logging can be found in the most recent [deploy workflow](https://github.com/Expensify/App/actions/workflows/deploy.yml) labeled `staging`, in the `createChecklist` action. Please tag @Julesssss with any issues.\r\n\r\n';
737331
737342
// PR list
737332
737343
if (sortedPRList.length > 0) {
737333
737344
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
Copy file name to clipboardExpand all lines: .github/actions/javascript/checkDeployBlockers/index.js
+31-1Lines changed: 31 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11617,6 +11617,13 @@ const CONST = {
11617
11617
HELP_WANTED: 'Help Wanted',
11618
11618
CP_STAGING: 'CP Staging',
11619
11619
},
11620
+
STATE: {
11621
+
OPEN: 'open',
11622
+
},
11623
+
COMMENT: {
11624
+
TYPE_BOT: 'Bot',
11625
+
NAME_GITHUB_ACTIONS: 'github-actions',
11626
+
},
11620
11627
ACTIONS: {
11621
11628
CREATED: 'created',
11622
11629
EDITED: 'edited',
@@ -11635,6 +11642,7 @@ const CONST = {
11635
11642
NO_ACTION: 'NO_ACTION',
11636
11643
ACTION_EDIT: 'ACTION_EDIT',
11637
11644
ACTION_REQUIRED: 'ACTION_REQUIRED',
11645
+
ACTION_HIDE_DUPLICATE: 'ACTION_HIDE_DUPLICATE',
11638
11646
};
11639
11647
exports["default"] = CONST;
11640
11648
@@ -11891,7 +11899,10 @@ class GithubUtils {
11891
11899
const sortedDeployBlockers = [...new Set(deployBlockers)].sort((a, b) => GithubUtils.getIssueOrPullRequestNumberFromURL(a) - GithubUtils.getIssueOrPullRequestNumberFromURL(b));
11892
11900
// Tag version and comparison URL
11893
11901
// eslint-disable-next-line max-len
11894
-
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n`;
11902
+
let issueBody = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n`;
11903
+
// Warn deployers about potential bugs with the new process
11904
+
issueBody +=
11905
+
'> 💡 **Deployer FYI:** This checklist was generated using a new process. PR list from original method and detail logging can be found in the most recent [deploy workflow](https://github.com/Expensify/App/actions/workflows/deploy.yml) labeled `staging`, in the `createChecklist` action. Please tag @Julesssss with any issues.\r\n\r\n';
11895
11906
// PR list
11896
11907
if (sortedPRList.length > 0) {
11897
11908
issueBody += '\r\n**This release contains changes from the following pull requests:**\r\n';
0 commit comments