-
Notifications
You must be signed in to change notification settings - Fork 246
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
fix(appservice): Remove erroneous ? operator #764
Conversation
Codecov Report
@@ Coverage Diff @@
## main #764 +/- ##
==========================================
+ Coverage 71.59% 77.37% +5.77%
==========================================
Files 117 94 -23
Lines 16474 13735 -2739
==========================================
- Hits 11795 10627 -1168
+ Misses 4679 3108 -1571
Continue to review full report at Codecov.
|
👍 |
I'm curious, how did that slip through CI? |
@johannescpk #747 was not up to date with GitHub has a setting that requires PRs to be up-to-date before merging, but I would argue that's overkill as cases like this are very rare and that setting require manual intervention on a daily basis. There's other solutions such as CI systems that maintain a merge queue where things go through another level of testing before being integrated into the main branch (see for instance Zuul, which I've wanted to try out for Ruma), but they're not as readily available as GitHub actions. |
Good old bors I think is also something which could do this. Iirc rust used this for a while. |
Fixes the issue caused by merging #747