Skip to content
This repository was archived by the owner on Oct 4, 2025. It is now read-only.

Commit 7c162e2

Browse files
authored
Merge pull request #12 from cr2007/Docs-alerts
Docs: Adds Alerts Markdown support
2 parents 4d1620b + 0b5c07e commit 7c162e2

File tree

2 files changed

+33
-10
lines changed

2 files changed

+33
-10
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,5 @@ YouTranslate utilizes ElevenLabs' voice cloning API and 'googletrans' python lib
5757
## :medical_symbol: Contributing
5858

5959
Contributions to YouTranslate are welcome! If you find any issues or want to improve the script, feel free to submit a pull request. For major changes or new features, please open an issue first to discuss the proposed changes.
60+
61+
For more info, check out [**CONTRIBUTING.md**](./docs/CONTRIBUTING.md)

docs/CONTRIBUTING.md

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
11
# 📜 Conventions for contributions
2-
This file contains guidelines for creating *commits, PRs, branches, issues, and etc*.
3-
<br>
4-
**READ BEFORE CONTRIBUTING!**
5-
<br>
6-
If you have any questions on the following information, text me (Adil), I will take you through it.
2+
This file contains guidelines for creating *commits, PRs, branches, issues, and etc*.
3+
4+
## Index
5+
6+
- [Commits](#➕-commits)
7+
- [Commit Message Structure](#🗃️-commit-message-structure)
8+
- [Example Commit](#example-commit)
9+
- [Commit Types](#📑-commit-types)
10+
- [Breaking Changes](#❗️-breaking-changes)
11+
- [Branching](#🌳-branching)
12+
- [Example Branch Name](#📄-example-branch-name)
13+
- [Pull Requests (PRs)](#pull-requests-prs)
14+
- [PR message structure](#🗃️-pr-message-structure)
15+
- [Example PR Message](#📄-example-pr-message)
16+
17+
> [!NOTE]
18+
> **READ BEFORE CONTRIBUTING!**<br>
19+
> If you have any questions on the following information, text me (Adil), I will take you through it.
20+
21+
---
722

823
## ➕ Commits
924
First, let's answer the questions **"When do I commit? And how many files do I commit at once?"**
1025
<br>
1126
The answer is very simple! Commit anytime you are done with ANY task. **For ex:**
1227
<br>
1328
<br>
14-
Let's say you are adding a login page. That's a big task, so you divide it on small ***sub-tasks***. (Make a login box, make a button, connect firebase, and etc.) Everytime you are done with a subtask, make a commit!
15-
<br>
16-
<br>
17-
**!!ATTENTION!!** Please, don't stage all the files in one commit. Stage only the files that are relevant to the subtask you finished. This is going to be unbelievably helpful down the road.
29+
Let's say you are adding a login page. That's a big task, so you divide it on small ***sub-tasks***. (Make a login box, make a button, connect firebase, and etc.)
30+
31+
Everytime you are done with a subtask, make a commit!
32+
33+
> [!WARNING]
34+
> Please, don't stage all the files in one commit. Stage only the files that are relevant to the subtask you finished.<br>
35+
> This is going to be unbelievably helpful down the road.
1836
1937
### 🗃️ Commit message Structure
2038
---
@@ -53,7 +71,8 @@ If there is a breaking change, put "BREAKING CHANGE:" in your ***commit body***,
5371

5472
## 🌳 Branching
5573
Try to have 1 branch per 1 issue. When you take up an issue (task) to work on, assign it to yourself on the issue's page, and comment: "@AdiKsOnDev, I am working on this issue."
56-
<br>
74+
75+
5776
The name of the branch has to be as follows:
5877
```
5978
<issue-number>-<branch-name>
@@ -66,6 +85,7 @@ The name of the branch has to be as follows:
6685

6786
## Pull Requests (PRs)
6887
Make a pull request when you are completely done with your issue. Assign me as a reviewer & assignee, as the milestone choose the according milestone.
88+
6989
### 🗃️ PR message structure
7090
---
7191
```
@@ -79,6 +99,7 @@ Closes Issue #number-of-the-issue
7999

80100
### 📄 Example PR message
81101
---
102+
82103
```
83104
Login Page finished
84105

0 commit comments

Comments
 (0)