From 2293541e328e6e89c183eed4c5f94a02aafc8264 Mon Sep 17 00:00:00 2001 From: Tobi <37471993+this-is-tobi@users.noreply.github.com> Date: Sat, 14 Oct 2023 09:20:17 -0700 Subject: [PATCH] Destroyed Create a commit using conventional commit semantic (markdown) --- ...mmit-using-conventional-commit-semantic.md | 64 ------------------- 1 file changed, 64 deletions(-) delete mode 100644 Create-a-commit-using-conventional-commit-semantic.md diff --git a/Create-a-commit-using-conventional-commit-semantic.md b/Create-a-commit-using-conventional-commit-semantic.md deleted file mode 100644 index acaa8a0..0000000 --- a/Create-a-commit-using-conventional-commit-semantic.md +++ /dev/null @@ -1,64 +0,0 @@ -Prompts to follow the [conventional commits](https://www.conventionalcommits.org/) pattern. - -```yaml -customCommands: - - key: "" - context: "global" - description: "Create new conventional commit" - prompts: - - type: "menu" - key: "Type" - title: "Type of change" - options: - - name: "build" - description: "Changes that affect the build system or external dependencies" - value: "build" - - name: "feat" - description: "A new feature" - value: "feat" - - name: "fix" - description: "A bug fix" - value: "fix" - - name: "chore" - description: "Other changes that don't modify src or test files" - value: "chore" - - name: "ci" - description: "Changes to CI configuration files and scripts" - value: "ci" - - name: "docs" - description: "Documentation only changes" - value: "docs" - - name: "perf" - description: "A code change that improves performance" - value: "perf" - - name: "refactor" - description: "A code change that neither foxes a bug nor adds a feature" - value: "refactor" - - name: "revert" - description: "Reverts a previous commit" - value: "revert" - - name: "style" - description: "Changes that do not affect the meaning of the code" - value: "style" - - name: "test" - description: "Adding missing tests or correcting existing tests" - value: "test" - - type: "input" - title: "Scope - Add '()'" - key: "Scope" - initialValue: "" - - type: "input" - title: "Breaking change - Add '!'" - key: "Breaking" - initialValue: "" - - type: "input" - title: "message" - key: "Message" - initialValue: "" - - type: "confirm" - key: "Confirm" - title: "Commit" - body: "Are you sure you want to commit?" - command: "git commit --message '{{.Form.Type}}{{.Form.Scope}}{{.Form.Breaking}}: {{.Form.Message}}'" - loadingText: "Creating conventional commit..." -``` \ No newline at end of file