From 21d8fe7e26982aa94056e730c0877d5f7f2beb8c Mon Sep 17 00:00:00 2001 From: Jeel Dobariya Date: Wed, 24 Sep 2025 17:34:27 +0530 Subject: [PATCH 1/5] chore: remove git-hooks as not require --- git-hooks/commit-msg.bash | 46 --------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 git-hooks/commit-msg.bash diff --git a/git-hooks/commit-msg.bash b/git-hooks/commit-msg.bash deleted file mode 100644 index 2e1105f..0000000 --- a/git-hooks/commit-msg.bash +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env bash - -# Path to the commit message file (provided by Git). -COMMIT_MSG_FILE=$1 - -# Ignore automatic commit messages containing ' into ' or 'Merge'. -if grep --quiet --extended-regexp " into |^Merge " "$COMMIT_MSG_FILE"; then - exit 0 -fi - -# Read the commit message from the file. -COMMIT_MSG=$(cat "$COMMIT_MSG_FILE") - -CONVENTIONAL_COMMIT_REGEX='^(feat|fix|docs|style|refactor|test|chore|build|ci|perf|revert)(\([a-z0-9_.-]+\))?(!)?:\s.*$' - -# Check if the commit message matches the regex. -if ! [[ $COMMIT_MSG =~ $CONVENTIONAL_COMMIT_REGEX ]]; then - echo "ERROR: Commit message does not follow Conventional Commits format." - echo - echo "The commit message should be structured as follows:" - echo "(): " - echo "[optional body]" - echo "[optional footer(s)]" - echo - echo "Valid types are:" - echo " feat: A new feature." - echo " fix: A bug fix." - echo " docs: Documentation changes." - echo " style: Code style changes (formatting, missing semicolons, etc.)." - echo " refactor: Code refactoring (neither fixes a bug nor adds a feature)." - echo " test: Adding or updating tests." - echo " chore: Routine tasks like updating dependencies or build tools." - echo " build: Changes affecting the build system or external dependencies." - echo " ci: Changes to CI configuration files or scripts." - echo " perf: Performance improvements." - echo " revert: Reverting a previous commit." - echo - echo "Examples:" - echo " feat(auth): add login functionality" - echo " fix(api)!: resolve timeout issue" - echo " docs(readme): update installation instructions" - echo - exit 1 -fi - -exit 0 From 985c74dc4e98c14140a645577ea65b2e74dc69dc Mon Sep 17 00:00:00 2001 From: Jeel Dobariya <136002730+JeelDobariya38@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:39:56 +0530 Subject: [PATCH 2/5] chore: update the pull request template (link in commit desc) https://github.com/PasscodesApp/Passcodes-Docs/blob/main/essentials/pull-request-template.md --- .github/pull_request_template.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 2fe8022..5588605 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,19 @@ -# Change Made +# Changes Made -- summary 1 -- summary 2 +- summary 1. +- summary 2. +- ... + +> summary here should be in one line (write consise so that review without take look at code, can say/determine what changed).. +> they should provide structure overview that read and understand what changed +> not a detail guide, you can provide further infomation in notes section or it would be expictily ask in pr comments at review if need..) + + +# Breaking Changes + +- [Write about any breaking changes, like architure change or databse changes etc.. If none, remove the sectio compeletly]. + + +## Notes + +[if any, otherwise remove the section] From 909a074fa1ecc9b543066ff81530b918eca7281d Mon Sep 17 00:00:00 2001 From: Jeel Dobariya <136002730+JeelDobariya38@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:48:35 +0530 Subject: [PATCH 3/5] chore: Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e35ed2..c9a2d00 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ npm run preview We appreciate the contribuation to website... -Before, contributing to this website project, you should have knowledge of the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes/blob/main/CONTRIBUTING.md) & [MIT License (app)](https://github.com/PasscodesApp/Passcodes/blob/main/LICENSE.txt) provide in [app repository](https://github.com/PasscodesApp/Passcodes). and also you should have basic knowledge of app repository codebase. +Before, contributing to this website project, you should have knowledge of the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/CONTRIBUTING.md) & [MIT License](https://github.com/PasscodesApp/Passcodes-Docs/blob/jeel-dev/LICENSE.txt) provide in [docs repository](https://github.com/PasscodesApp/Passcodes-Docs). and also you should have basic knowledge of app repository codebase. + +More info, read `README` on [Passcodes](https://github.com/PasscodesApp) github organization homepage. ## 📫 Questions or Issues? @@ -30,7 +32,7 @@ Free free to [open an issue](https://github.com/PasscodesApp/Passcodes-Website/i ## Security Policy -We follow the same security policy as the [app repository](https://github.com/PasscodesApp/Passcodes). which is avaiable in app repository over [here](https://github.com/PasscodesApp/Passcodes/blob/main/SECURITY.md). +We follow the same security policy as the [app repository](https://github.com/PasscodesApp/Passcodes). which is avaiable in app repository over [here](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/SECURITY.md). --- From 011d2965fd67e2bebd8a4ec17961e4f51f10141a Mon Sep 17 00:00:00 2001 From: Jeel Dobariya <136002730+JeelDobariya38@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:50:39 +0530 Subject: [PATCH 4/5] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9a2d00..2be7cf4 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ npm run preview We appreciate the contribuation to website... -Before, contributing to this website project, you should have knowledge of the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/CONTRIBUTING.md) & [MIT License](https://github.com/PasscodesApp/Passcodes-Docs/blob/jeel-dev/LICENSE.txt) provide in [docs repository](https://github.com/PasscodesApp/Passcodes-Docs). and also you should have basic knowledge of app repository codebase. +Before, contributing to this website project, you should have knowledge of the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/CONTRIBUTING.md) & [MIT License](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/LICENSE.txt) provide in [docs repository](https://github.com/PasscodesApp/Passcodes-Docs). and also you should have basic knowledge of app repository codebase. More info, read `README` on [Passcodes](https://github.com/PasscodesApp) github organization homepage. From 951e7fa587151259dd0e0ecac0dd1a7aeb1bfc47 Mon Sep 17 00:00:00 2001 From: Jeel Dobariya <136002730+JeelDobariya38@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:57:33 +0530 Subject: [PATCH 5/5] docs: Update everything according to `PasscodesApp/Passcodes-Docs` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2be7cf4..1999a2b 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ npm run preview We appreciate the contribuation to website... -Before, contributing to this website project, you should have knowledge of the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/CONTRIBUTING.md) & [MIT License](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/LICENSE.txt) provide in [docs repository](https://github.com/PasscodesApp/Passcodes-Docs). and also you should have basic knowledge of app repository codebase. +By, contributing to this website project, you conform that you have knowledge of & are accept the [CONTRIBUTING.md](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/CONTRIBUTING.md) & [MIT License](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/LICENSE.txt) provide in [PasscodesApp/Passcodes-Docs](https://github.com/PasscodesApp/Passcodes-Docs) Repository. And also you should have basic knowledge of App Repository Codebase. -More info, read `README` on [Passcodes](https://github.com/PasscodesApp) github organization homepage. +For more info, read `README` on [Passcodes](https://github.com/PasscodesApp) github organization homepage. ## 📫 Questions or Issues? @@ -32,7 +32,7 @@ Free free to [open an issue](https://github.com/PasscodesApp/Passcodes-Website/i ## Security Policy -We follow the same security policy as the [app repository](https://github.com/PasscodesApp/Passcodes). which is avaiable in app repository over [here](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/SECURITY.md). +We follow the same security policy as the [docs repository](https://github.com/PasscodesApp/Passcodes-Docs) for entire organization. which is avaiable in our docs repository over [PasscodesApp/Passcodes-Docs](https://github.com/PasscodesApp/Passcodes-Docs/blob/main/SECURITY.md). ---