From e27f86358ad02a2b75087be4e83a3dd1ff7f1592 Mon Sep 17 00:00:00 2001 From: nandinivij <61885842+nandinivij@users.noreply.github.com> Date: Fri, 10 Jul 2020 12:38:52 -0700 Subject: [PATCH] [doc] Added release notes section to contribution.md (#562) --- docs/CONTRIBUTING.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index bd8194a..652d8cd 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -97,3 +97,23 @@ We could always use improvements to our documentation! Anyone can contribute to * More examples or generic templates that others can use. * Blog posts, articles and such – they’re all very much appreciated. * You can also edit documentation files directly in the GitHub web interface, without creating a local copy. This can be convenient for small typos or grammar fixes. + +## Release Notes +To add commit messages to release notes, tag the message in following format +``` +[TYPE] +``` +[TYPE] can be among the following +* FEATURE +* FIX +* DOC +* TEST +* CI +* REVERT +* FILTERADD +* FILTERMOD + +``` +Sample commit: +git commit -m "[TEST] test-message" +``` \ No newline at end of file