Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
swaraj-das authored Oct 19, 2024
2 parents 3400a9e + aaa1377 commit ddf2763
Show file tree
Hide file tree
Showing 13 changed files with 2,291 additions and 2,282 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/PRValidator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: PR Description Check

on:
pull_request:
types: [opened]

jobs:
validate-pr-description:
runs-on: ubuntu-latest
steps:
- name: Validate PR Description
id: check_description
run: |
if [ -z "${{ github.event.pull_request.body }}" ]; then
echo "::error::Description is missing!"
exit 1
fi
- name: Check for issue number or 'Fixes #NEW'
id: check_issue_number
run: |
description="${{ github.event.pull_request.body }}"
if [[ ! "$description" =~ (Fixes #[0-9]+|Fixes #NEW) ]]; then
echo "::error::PR description must contain an issue number or 'Fixes #NEW'"
exit 1
fi
4 changes: 3 additions & 1 deletion .github/workflows/auto-assign-label-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
uses: actions-ecosystem/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: gssoc-ext
labels:
- gssoc-ext
- hacktoberfest-accepted

- name: Assign PR to Creator
uses: actions-ecosystem/action-assign@v1
Expand Down
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

9 changes: 8 additions & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ If you experience or witness unacceptable behavior, you can report it by submitt

Email a detailed report to admin.

# action against Violation
If any misconduct or violation of rules is found then strict actions will be taken against you and you may be out of this open source contributrions.

# Information to Include:

When submitting a report, include your contact information, a detailed account of the incident (including dates, times, and individuals involved), and any relevant supporting materials.
Expand Down Expand Up @@ -77,11 +80,15 @@ conduct enforcement ladder](https://github.com/mozilla/diversity).

[homepage]: https://www.contributor-covenant.org

## guide for beginner contribuiter
If ou are newbie in as acontributor on open source then you can watch our academy videos
(gssoc.girlscript.tech/gssoc_academy)

For answers to common questions about this code of conduct, see the
FAQ at https://www.contributor-covenant.org/faq. Translations are
available at https://www.contributor-covenant.org/translations.


## Contact Information

For any questions or further clarification, please contact admin
For any questions or further clarification, please contact admin
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# ๐ŸŽฎ Collect Your GamingTools ๐Ÿ•น๏ธ
A <b> responsive and dynamic website </b> to showcase the best gaming accessories for every gamer!

<table align="center">
<thead align="center">
<tr border: 2px;>
<td><b>๐ŸŒŸ Stars</b></td>
<td><b>๐Ÿด Forks</b></td>
<td><b>๐Ÿ› Issues</b></td>
<td><b>๐Ÿ”” Open PRs</b></td>
<td><b>๐Ÿ”• Close PRs</b></td>
</tr>
</thead>
<tbody>
<tr>
<td><img alt="Stars" src="https://img.shields.io/github/stars/swaraj-das/Collect-your-GamingTools?style=flat&logo=github"/></td>
<td><img alt="Forks" src="https://img.shields.io/github/forks/swaraj-das/Collect-your-GamingTools?style=flat&logo=github"/></td>
<td><img alt="Issues" src="https://img.shields.io/github/issues/swaraj-das/Collect-your-GamingTools?style=flat&logo=github"/></td>
<td><img alt="Open Pull Requests" src="https://img.shields.io/github/issues-pr/swaraj-das/Collect-your-GamingTools?style=flat&logo=github"/></td>
<td><img alt="Close Pull Requests" src="https://img.shields.io/github/issues-pr-closed/swaraj-das/Collect-your-GamingTools?style=flat&color=green&logo=github"/></td>
</tr>
</tbody>
</table>

## โœจ Features
๐Ÿ—‚๏ธ <b>Dynamic Navigation Menu</b>: Toggle visibility, designed for seamless use across all screen sizes.
Expand Down Expand Up @@ -77,6 +97,10 @@ We welcome all contributions to improve **Collect Your GamingTools**! If you'd l
![Contributors](https://contrib.rocks/image?repo=swaraj-das/Collect-your-GamingTools)
## ๐ŸŽ‰ **Join us!**
Whether youโ€™re contributing code, improving documentation, or suggesting new features, your involvement matters. We value contributions that help you learn and grow, not just for gaining points.
All the Best! ๐Ÿ’ซ **Happy Coding!** ๐Ÿณ
1 change: 0 additions & 1 deletion SignUp/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ <h1>Create Your Account</h1>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<div id="email-error" class="error-message"></div> <!-- Error message container -->
<input type="email" id="email" name="email" placeholder="Enter your mail-id" required>
</div>
Expand Down
Loading

0 comments on commit ddf2763

Please sign in to comment.