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
// Warn deployers about potential bugs with the new process
15847
15883
issueBody +=
15848
15884
'> 💡 **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';
core.info(`🎉 Successfully fetched ${allCommits.length} total commits`);
16139
16184
core.endGroup();
16185
+
console.log('');
16140
16186
return allCommits.map((commit) => ({
16141
16187
commit: commit.sha,
16142
16188
subject: commit.commit.message,
@@ -16145,9 +16191,10 @@ class GithubUtils {
16145
16191
}
16146
16192
catch (error) {
16147
16193
if (error instanceof request_error_1.RequestError && error.status === 404) {
16148
-
console.error(`❓❓ Failed to get commits with the GitHub API. The base tag ('${fromTag}') or head tag ('${toTag}') likely doesn't exist on the remote repository. If this is the case, create or push them.`);
16194
+
core.error(`❓❓ Failed to get commits with the GitHub API. The base tag ('${fromTag}') or head tag ('${toTag}') likely doesn't exist on the remote repository. If this is the case, create or push them.`);
// Warn deployers about potential bugs with the new process
12638
12674
issueBody +=
12639
12675
'> 💡 **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';
core.info(`🎉 Successfully fetched ${allCommits.length} total commits`);
12930
12975
core.endGroup();
12976
+
console.log('');
12931
12977
return allCommits.map((commit) => ({
12932
12978
commit: commit.sha,
12933
12979
subject: commit.commit.message,
@@ -12936,9 +12982,10 @@ class GithubUtils {
12936
12982
}
12937
12983
catch (error) {
12938
12984
if (error instanceof request_error_1.RequestError && error.status === 404) {
12939
-
console.error(`❓❓ Failed to get commits with the GitHub API. The base tag ('${fromTag}') or head tag ('${toTag}') likely doesn't exist on the remote repository. If this is the case, create or push them.`);
12985
+
core.error(`❓❓ Failed to get commits with the GitHub API. The base tag ('${fromTag}') or head tag ('${toTag}') likely doesn't exist on the remote repository. If this is the case, create or push them.`);
0 commit comments