docs: update contribution guidelines to standardize branch naming and commit message format
All checks were successful
container-scan / Container Scan (pull_request) Successful in 1m10s
docker-build / docker (pull_request) Successful in 3m17s

This commit is contained in:
Maximilian Liebmann 2025-05-12 10:48:53 +02:00
parent 92af2bbb7c
commit df55014f3a

View file

@ -125,11 +125,13 @@ This project is built with a modern tech stack:
Contributions are welcome! If you'd like to contribute, please:
1. Fork the repository.
2. Create a new branch (`git checkout -b feature/your-feature-name` or `fix/your-bug-fix`).
2. Create a new branch (`git checkout -b action/<issue#>-feature_name`).
3. Make your changes.
4. Commit your changes (`git commit -m 'Add some feature'`).
5. Push to the branch (`git push origin feature/your-feature-name`).
6. Open a Pull Request against the `main` (or `develop`) branch.
4. Commit your changes (`git commit -m 'action: add some feature'`).
5. Push to the branch (`git push origin action/<issue#>-feature_name`).
6. Open a Pull Request against the `main` branch.
Possible actions are: feat|fix|test|docs|chore|refactor|style|revert
Please ensure your code adheres to the project's coding standards (e.g., run linters/formatters if configured) and that any database schema changes are accompanied by a Prisma migration.