github.com/grantbow/fit@v0.7.1-0.20220916164603-1f7c88ac81e6/fit/identifier-automatic/Description (about)

     1  #### What did you do?
     2  bug issue create autoid
     3  
     4  #### What did you expect to see?
     5  automatic, incrementing identifier number
     6  
     7  #### What did you see instead?
     8  autoid was created but no identifier
     9  configuration should default correctly to not provide one
    10  but it should be clear how to enable this feature
    11  
    12  once the setting is enabled two features are needed.
    13  
    14  First is the happy path, bug add, assign and increment.
    15  
    16  Second is to check that all bugs added, via bug or manually
    17  have an id assigned already. If not, ask to add it.
    18  
    19  #### Does this issue reproduce with the latest release?
    20  
    21  
    22  added features to bugs/Config.go to create and increment idnext
    23  
    24          // Identifier Automatic assignment (true) or not (false, default)
    25          IDAutomatic bool `json:"IDAutomati"`
    26  
    27  creates next to .bug_yml a file .bug_idnext_1001 by default
    28  
    29  
    30  
    31  todo: add to automatic configuration creation
    32  
    33  todo: add to documentation
    34  
    35  todo: name of file should default to .fit_idnext_1001 instead
    36  
    37  todo: missing help for subcommands notags, tagslist and noids
    38