-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deploy Checklist: New Expensify 2023-10-30 #30560
Comments
Wrote this little script to help check off old items from new checklist: function checkOffOldPRsOnNewChecklist(oldChecklist, newChecklist) {
const oldPrNums = oldChecklist
.trim()
.split('\n')
.map(prURL => prURL.substr(prURL.lastIndexOf('/') + 1));
const output = newChecklist
.trim()
.split('\n')
.map((prURL) => {
const prNum = prURL.substr(prURL.lastIndexOf('/') + 1);
const isChecked = prURL.toLowerCase().indexOf('[x]') >= 0 || oldPrNums.includes(prNum);
const ghChecklistPrefix = isChecked ? '- [x] ' : '- [ ] ';
return `${ghChecklistPrefix}https://github.com/Expensify/App/pull/${prNum}`;
})
.join('\n');
// Copy new checklist with updated checked items to clipboard
copy(output);
} |
Output:
|
🚀 All staging deploys are complete, @Expensify/applauseleads please begin QA on version https://github.com/Expensify/App/releases/tag/1.3.93-0 🚀 |
Checking off #30592. Demoted to NAB. |
It looks like there's only 1% left in testrail? It would be amazing if we could get this done this morning, but no worries of not possible |
Regression is completed. |
Thanks @kavimuru ! #30607 is being looked into currently 👍
Yes agreed, OK to check it off! 👍 |
@Beamanator I will test in other platform and update. |
Thank so much @kavimuru ! 🙏 |
@Beamanator It's a pass in all other platforms but Android. If this is expected as per this comment #30559 (comment), good to check it off. |
Niiice, thanks for testing & pointing that out, let's check it off!! 👍 |
#30607 checked off b/c it was fixed with https://github.com/Expensify/Auth/pull/9088 & tested well in staging 👍 One more DP was added so I'll try to look now! |
Checking off #30644 (comment) b/c we agreed it's NAB! That's the last deploy blocker! |
|
Release Version:
1.3.93-1
Compare Changes: production...staging
This release contains changes from the following pull requests:
Deploy Blockers:
Deployer verifications:
cc @Expensify/applauseleads
The text was updated successfully, but these errors were encountered: