-
Notifications
You must be signed in to change notification settings - Fork 608
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
feat(api): support median and quantile on more types #7810
Conversation
51119e3
to
7fa987c
Compare
7fa987c
to
43e7c0d
Compare
3537ec0
to
999f666
Compare
4a8f072
to
4c84a00
Compare
Bleh, the github's download artifact action v4 seems incredibly unreliable right now. |
adb604f
to
7b27017
Compare
7b27017
to
3d75f20
Compare
Ok, the commit linter is successfully not commenting on PRs with valid titles and descriptions. I'll edit the PR title to be invalid to try the case where we want a comment to show up |
Sweet, that's working. |
Last case to check is that the linter isn't spamming comments when additional edits don't fix the issue. |
Ok, looks like it's a bit spammy! Fixing it... |
ACTION NEEDED Ibis follows the Conventional Commits specification for release automation. The PR title and description are used as the merge commit message. Please update your PR title and description to match the specification. |
Ok, I think the spam factory has been shutdown. One more try |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
I had one more edit, which was to actually fail the check if the message is bogus! |
Ok, looks like that's working. Lemme fix the title, and then we can try squash merging 😬 |
Ok, squashing 😬 |
Adds support for calling
median
andquantile
on more types than numeric.Tests are included for computing the median of dates + strings.
Closes #7250.