This is a follow up to D71759.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
@MaskRay I know it's a bit quirky, but Phabricator doesn't send email to the list on status changes (like approvals) that contain no user-authored text, which makes it look like patches are being committed without approval (if you're just reading the mailing list). If you could write a little something ("Thanks", "Looks good", etc) whenever approving a patch, it'd help make sure the mailing list accurately reflects the state of patches - thanks!
Comment Actions
@dblaikie I actually read a similar comment from you to another person. Thanks for the reminder! To prevent me from forgetting, I created a Tampermonkey script:
const select = document.querySelector('.aphront-form-input > select') if (select) select.onchange = function() { const accept = select.querySelector('option[value=accept]') if (accept && accept.disabled) { const comment = document.querySelector('.remarkup-assist-textarea') if (comment && comment.value.length == 0) { const words = ['LGTM.', 'Thanks!', 'Looks great!'] comment.value = words[~~(Math.random()*words.length)]+' ' comment.focus() } } }