Skip to content

Commit a4f1228

Browse files
committed
added page to community on checks before PR
1 parent 51369ae commit a4f1228

File tree

9 files changed

+82
-7
lines changed

9 files changed

+82
-7
lines changed

blog/git-coding-agent/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ When creating an issue for the GitHub Copilot Coding Agent, clarity and structur
4949

5050
- **Provide Clear Context:**
5151
Begin by describing the problem or feature request in detail. Explain *why* the change is needed, referencing any relevant background, user stories, or business goals. If the issue relates to a bug, include steps to reproduce, expected vs. actual behavior, and any error messages or screenshots.
52-
![UI-UX Design impact in future](/img/blogs/01-code-issue.png)
52+
![UI-UX Design impact in future](/img/blogs/github-copilot/01-code-issue.png)
5353

5454

5555
- **Define Expected Outcomes:**
@@ -63,7 +63,7 @@ When creating an issue for the GitHub Copilot Coding Agent, clarity and structur
6363

6464
- **Assign the Issue to Copilot:**
6565
Just like you would with a human teammate, assign the issue to Copilot. This triggers the agent workflow and signals that the issue is ready for automated handling.
66-
![UI-UX Design impact in future](/img/blogs/02-assign-copilot.png)
66+
![UI-UX Design impact in future](/img/blogs/github-copilot/02-assign-copilot.png)
6767

6868

6969
### **Example Issue Template:**
@@ -101,7 +101,7 @@ You can expect:
101101
- Clear traceability between your issue and the resulting code changes.
102102

103103
Stay engaged by reviewing the PR, providing feedback, or merging it when ready. This workflow helps you leverage automation while maintaining control over your codebase.
104-
![UI-UX Design impact in future](/img/blogs/03-pr-copilot.png)
104+
![UI-UX Design impact in future](/img/blogs/github-copilot/03-pr-copilot.png)
105105

106106
---
107107

@@ -121,10 +121,10 @@ We’re inviting early adopters to help shape the future of the GitHub Copilot C
121121
- The most insightful and actionable feedback will be eligible for a $200 gift card.
122122
- Help make Copilot Coding Agent more effective for the entire developer community.
123123
- Get early access to new features and updates.
124-
![UI-UX Design impact in future](/img/blogs/03-reward-copilot.png)
124+
![UI-UX Design impact in future](/img/blogs/github-copilot/03-reward-copilot.png)
125125

126126

127-
They appreciate your time and expertise—thank you for helping us build a better coding agent!
127+
128128
---
129129

130130
## ✅ Conclusion
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
id: understand-lint-checks
3+
title: Understand Checks before PR
4+
sidebar_label: Understand Checks before PR
5+
sidebar_position: 3
6+
---
7+
8+
Thank you for considering contributing to CodeHarborHub! We welcome contributions from everyone. Whether you're a seasoned developer or just starting out, there are many ways to get involved and help improve CodeHarborHub. This document outlines the guidelines for contributing to this project.
9+
10+
## Getting Started
11+
12+
To get started with contributing to Recode-Hive, please refer to our [Contributing Guidelines](/community/contributing-guidelines).
13+
14+
Follow these steps:
15+
16+
17+
```mermaid
18+
flowchart LR
19+
Fork[Fork the project]-->branch[Create a New Branch]
20+
branch-->Edit[Edit file]
21+
Edit-->commit[Commit the changes]
22+
commit -->|Finally|creatpr((Create a Pull Request))
23+
```
24+
25+
1. **Clone the repository:**
26+
```bash
27+
git clone https://github.com/your-username/recodehive-website.git
28+
```
29+
30+
2. **Navigate to the project directory:**
31+
```bash
32+
cd recodehive-website
33+
```
34+
35+
3. **Install dependencies:**
36+
```bash
37+
npm install
38+
```
39+
40+
4. **Running the Application:**
41+
42+
Once you have installed the dependencies, you can run the application locally using:
43+
```bash
44+
npm i
45+
```
46+
```bash
47+
npm start
48+
```
49+
50+
This command will start a development server and open the application in your default web browser.
51+
52+
**If you'd like to contribute to CodeHarborHub, please follow these guidelines:**
53+
54+
- **Fork** the repository and clone it locally.
55+
- Create a new branch for your feature or bug fix: `git checkout -b feature-name`
56+
- Make your changes and test thoroughly.
57+
- Commit your changes: `git commit -m "Brief description of your changes"`
58+
- Push to the branch: `git push origin feature-name`
59+
- Submit a pull request detailing your changes.
60+
61+
62+
## License
63+
64+
This project is licensed under the [MIT License](/License).

docs/sql/table-transformation/list-drop-table.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ These skills are essential for maintaining and organizing your database as your
141141

142142
---
143143

144+
## 📝 Quiz: Test Your Knowledge
145+
144146
#### 1. Now that we have the list of tables, let's delete the entire `past_events` table with the `DROP TABLE` query.
145147

146148
Here is the original `past_events` table:
@@ -169,8 +171,8 @@ Here is the original `past_events` table:
169171

170172
Q Tap the correct answer
171173

172-
- [ ] A schema contains only table information
173-
- [x] A schema contains information about a database
174+
- [ ] A schema contains only table information.
175+
- [x] A schema contains information about a database.
174176

175177
<details>
176178
<summary>Answer</summary>

src/database/blogs/index.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ const blogs: Blog[] = [
4747
description:
4848
"An SEO backlink is created when one website links to another, and they’re extremely important for SEO. ",
4949
slug: "google-backlinks",
50+
},
51+
52+
{
53+
id: 6,
54+
title: "What is GitHub Copilot",
55+
image: "/img/blogs/06-github-agent.png",
56+
description:
57+
"The GitHub Copilot Coding Agent is an asynchronous software engineering agent that assists developers by suggesting code snippets",
58+
slug: "git-coding-agent",
5059
},
5160
];
5261

1.1 MB
Loading

0 commit comments

Comments
 (0)