Skip to content

Commit d5fd1bf

Browse files
committed
fix deployerFYI message in generateStagingDeployCashBody test
1 parent 7225a78 commit d5fd1bf

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/unit/GithubUtilsTest.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,11 @@ describe('GithubUtils', () => {
405405

406406
const baseDeployBlockerList = [`https://github.com/${process.env.GITHUB_REPOSITORY}/pull/3`, `https://github.com/${process.env.GITHUB_REPOSITORY}/issues/4`];
407407

408+
// Add the new warning message that was added to the GithubUtils
409+
const deployerFYIMessage = '> 💡 **Deployer FYI:** This checklist was generated using a new process. PR listfrom 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';
410+
408411
// eslint-disable-next-line max-len
409-
const baseExpectedOutput = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n**This release contains changes from the following pull requests:**\r\n`;
412+
const baseExpectedOutput = `**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/${process.env.GITHUB_REPOSITORY}/compare/production...staging\r\n\r\n${deployerFYIMessage}\r\n**This release contains changes from the following pull requests:**\r\n`;
410413
const openCheckbox = '- [ ] ';
411414
const closedCheckbox = '- [x] ';
412415
const ccApplauseLeads = 'cc @Expensify/applauseleads\r\n';

0 commit comments

Comments
 (0)