Skip to content

Latest commit

 

History

History
73 lines (43 loc) · 2.24 KB

contribution.md

File metadata and controls

73 lines (43 loc) · 2.24 KB

⭐ Open Source Contribution to LinkedIn Automation Bot ⭐

Thank you for your interest in contributing to LinkedIn Automation Bot! 🎉We welcome all contributions, whether it’s bug fixes, feature additions, documentation improvements, or suggestions. This is the step-by-step guide about how you can kick start your contribution to this particular repository.

Let's start with

🛠 How to Contribute

1️⃣ Fork the Repository

  1. Click the Fork button at the top right of the repository page.
  2. This will create a copy of the repository in your GitHub account.

2️⃣ Clone the Repository

Clone the forked repository to your local machine:

git clone https://github.com/your-username/linkedin-automate-comment.git

cd linkedin-automate-comment

3️⃣ Create a New Branch

Before making changes, create a new branch:

git checkout -b feature-name (Replace feature-name with a relevant name describing your contribution)

4️⃣ Make Your Changes

  • Add new features, fix bugs, or improve documentation.
  • Ensure your code follows best practices and is well-documented.

5️⃣ Commit Your Changes

Add changes and Commit with a meaningful message:

git add .

git commit -m "Added feature: [Brief Description]"

6️⃣ Push to Your Fork

git push origin feature-name

7️⃣ Create a Pull Request (PR)

  1. Go to the original repository: https://github.com/Hiteshydv001/linkedin-automate-comment
  2. Click on the Pull Requests tab.
  3. Click New Pull Request.
  4. Select your branch and submit the pull request.
  5. Add a clear title and description of the changes made.

Once your PR is reviewed and approved, it will be merged into the main branch. 🎯

📌 Contribution Guidelines

✔ Ensure your code is clean and readable.
✔ Follow existing coding style and structure.
✔ Provide necessary documentation and comments.
✔ Run tests before submitting.

🐛 Reporting Issues

If you find bugs or have feature requests, create an issue: Issue Tracker

🙌 Happy Coding & Thank You for Contributing! 🚀