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
15862
15883
issueBody +=
15863
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`);
16154
16184
core.endGroup();
16185
+
console.log('');
16155
16186
return allCommits.map((commit) => ({
16156
16187
commit: commit.sha,
16157
16188
subject: commit.commit.message,
@@ -16160,9 +16191,10 @@ class GithubUtils {
16160
16191
}
16161
16192
catch (error) {
16162
16193
if (error instanceof request_error_1.RequestError && error.status === 404) {
16163
-
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
12653
12674
issueBody +=
12654
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`);
12945
12975
core.endGroup();
12976
+
console.log('');
12946
12977
return allCommits.map((commit) => ({
12947
12978
commit: commit.sha,
12948
12979
subject: commit.commit.message,
@@ -12951,9 +12982,10 @@ class GithubUtils {
12951
12982
}
12952
12983
catch (error) {
12953
12984
if (error instanceof request_error_1.RequestError && error.status === 404) {
12954
-
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