From 0c535f66834a98cb57d4a167918509afb086b391 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni Date: Thu, 28 May 2020 12:41:52 +0530 Subject: [PATCH] =?UTF-8?q?feat:=20add=20config=20file=20for=20semantic-pu?= =?UTF-8?q?ll-request=20=F0=9F=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - [x] once the github app (https://github.com/zeke/semantic-pull-requests#configuration) is enabled, the PR's will be semantic --- .github/semantic.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/semantic.yml diff --git a/.github/semantic.yml b/.github/semantic.yml new file mode 100644 index 0000000000..cac9be3e4c --- /dev/null +++ b/.github/semantic.yml @@ -0,0 +1,23 @@ +# Always validate the PR title AND all the commits +titleAndCommits: true +# By default types specified in commitizen/conventional-commit-types is used. +# See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json +# You can override the valid types +types: + - feat + - fix + - docs + - style + - refactor + - perf + - test + - build + - ci + - chore + - revert +# Allows use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns") +# this is only relevant when using commitsOnly: true (or titleAndCommits: true) +allowMergeCommits: true +# Allow use of Revert commits (eg on github: "Revert "feat: ride unicorns"") +# this is only relevant when using commitsOnly: true (or titleAndCommits: true) +allowRevertCommits: true \ No newline at end of file