Bug 209143 - prepare-changeLog should support bug titles generated by external tools
Summary: prepare-changeLog should support bug titles generated by external tools
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-03-16 11:44 PDT by BJ Burg
Modified: 2020-03-16 11:51 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description BJ Burg 2020-03-16 11:44:06 PDT
When committing to WebKit's git-svn repository, I find it desirable to fill in template bug description with bug information (i.e., radar title and link) that's computed by another script. This is currently not possible because 'Need the bug URL (OOPS!)' is always present even if --description is passed:

midnight:OpenSource bburg$  prepare-ChangeLog --description="Spongebob is the best" -g head~1 --no-write
  Running status to find changed, added, or removed files.
  Reviewing diff to determine which lines changed.
  Extracting affected function names from source files.
  Change author: dpino@igalia.com <dpino@igalia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>.
2020-03-16  dpino@igalia.com  <dpino@igalia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>

        Spongebob is the best
        Need the bug URL (OOPS!).

        Reviewed by NOBODY (OOPS!).

To get around this, I propose either:
- adding a --no-bug option, which suppresses this line
- suppressing the line if --description is passed without --bug
Comment 1 BJ Burg 2020-03-16 11:51:27 PDT
Clarification: I care about the bug title, not the actual description with the file changes.