RESOLVED FIXED 68822
Add a way to allow adding cc's or messages to bugs based on patch contents.
https://bugs.webkit.org/show_bug.cgi?id=68822
Summary Add a way to allow adding cc's or messages to bugs based on patch contents.
David Levin
Reported 2011-09-26 11:58:43 PDT
The general idea is to have a file which file and/or code regexs and based on what matches add a cc or message to a bug.
Attachments
David Levin
Comment 1 2011-09-26 12:08:03 PDT
Here's an example file to give an idea of the syntax: { "DEFINITIONS": { "ThreadingFiles": { "filename": (r"Source/JavaScriptCore/wtf/RefCountedThreadSafe\.h" r"|Source/WebCore/platform/CrossThreadCopier\.h"), }, "ThreadingStructures": { "added": r"RefCountedThreadSafe|deprecatedTurnOffVerifier|AtomicallyInitializedStatic", }, "deprecatedTurnOffVerifier": { "added": r"deprecatedTurnOffVerifier", }, }, "CC_RULES": { "ThreadingFiles|ThreadingStructures": [ "levin@chromium.org", ], }, "CC_MESSAGES": { "deprecatedTurnOffVerifier": [ "Whoa there grasshopper, don't use deprecatedTurnOffVerifier. It has deprecated in the method name for a reason!", ] } } The file will be at Tools/Scripts/webkitpy/common/config/watch_list
David Levin
Comment 2 2011-09-30 18:10:03 PDT
David Levin
Comment 3 2011-10-19 15:54:57 PDT
Note You need to log in before you can comment on or make changes to this bug.