conventional-commits / conventionalcommits.org

The conventional commits specification
https://conventionalcommits.org
MIT License
6.73k stars 520 forks source link

Ticket/Issue ID #451

Closed jamesgeddes closed 2 years ago

jamesgeddes commented 2 years ago

Where should the issue ID go? Is there a convention for what the tag should be?

Would this be satisfactory?

fix: title

body

issue: {id}
damianopetrungaro commented 2 years ago

Hey @jamesgeddes there is an example on the website you could use as a reference:

fix: prevent racing of requests

Introduce a request id and a reference to latest request. Dismiss
incoming responses other than from latest request.

Remove timeouts which were used to mitigate the racing issue but are
obsolete now.

Reviewed-by: Z
Refs: #123

you could add Issue: id as a footer element :)

jamesgeddes commented 2 years ago

Thanks @damianopetrungaro - I had seen that but it seemed like Refs is for git IDs, so I was just wondering if it would be permissible to make up a tag. We will do as you have suggested! Thanks!