🐛 Code-Review: change phabricator regex to allow URLs - #4086
Merged
Conversation
The old regex used \w which only allowed [0-9A-Za-z_], however most projects use full URLs with phabricator (e.g. https://reviews.foo.org/D###). This led to errors parsing the revisions, where "https" was seen as the revision, leading to an underreporting of code review practices. The new regex focuses on the D#### part and uses it as the revision. Signed-off-by: Spencer Schrock <sschrock@google.com>
spencerschrock
requested review from
justaugustus and
naveensrinivasan
and removed request for
a team
May 6, 2024 22:09
spencerschrock
temporarily deployed
to
integration-test
May 6, 2024 22:10 — with
GitHub Actions
Inactive
raghavkaul
approved these changes
May 7, 2024
Member
Author
|
/scdiff generate Code-Review |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
bug fix
What is the current behavior?
The old regex used
\wwhich only allowed[0-9A-Za-z_], however most projects use full URLs with phabricator (e.g.https://reviews.foo.org/D###). This led to errors parsing the revisions, wherehttpswas seen as the revision (the portion which matched\w), leading to an underreporting of code review practices as everything was considered 1 changeset.What is the new behavior (if this is a feature change)?**
The new regex focuses on matching
D####which is on the same line as "Differential Revision" . This regex does force the D prefix for a revision.Which issue(s) this PR fixes
Fixes #4038
Special notes for your reviewer
I also made use of subtests in the corresponding test because it helps isolate the test failures better.
Does this PR introduce a user-facing change?
For user-facing changes, please add a concise, human-readable release note to
the
release-note(In particular, describe what changes users might need to make in their
application as a result of this pull request.)