Skip to content

Commit

Permalink
Merge branch 'main' into rtb
Browse files Browse the repository at this point in the history
  • Loading branch information
rashi0409 authored Aug 9, 2024
2 parents b30cc42 + afadacc commit 68bbb19
Show file tree
Hide file tree
Showing 87 changed files with 11,840 additions and 1,904 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/auto-label-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Auto Label Issue

on:
issues:
types: [opened, reopened, edited]

jobs:
label_issue:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Label Issue
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const issue = context.payload.issue;
const issueTitle = issue.title.toLowerCase();
// Add gssoc label to all issues
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue.number,
labels: ['gssoc']
});
const addLabel = async (label) => {
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue.number,
labels: [label]
});
};
if (issueTitle.includes('documentation')) {
await addLabel('documentation');
}
if (issueTitle.includes('feature')) {
await addLabel('enhancement');
}
if (issueTitle.includes('bug')) {
await addLabel('bug');
}
53 changes: 53 additions & 0 deletions .github/workflows/auto-label-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Auto Label PRs

on:
pull_request:
types: [opened, edited]

jobs:
label_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml

- name: Add GSSOC label
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['gssoc']
})
- name: Add additional labels based on title
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const title = context.payload.pull_request.title.toLowerCase();
const labelsToAdd = [];
if (title.includes('documentation')) {
labelsToAdd.push('documentation');
}
if (title.includes('feature')) {
labelsToAdd.push('feature');
}
if (title.includes('bug')) {
labelsToAdd.push('bug');
}
if (labelsToAdd.length > 0) {
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: labelsToAdd
});
}
Empty file.
118 changes: 118 additions & 0 deletions .history/Html-files/offers1_20240727211457.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offer Details - Savings</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #f8f9fa;
padding: 20px;
text-align: center;
}

.container {
padding: 20px;
}

h1,
h2 {
color: #333;
}

p {
color: #555;
}

.main-btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}

.main-btn:hover {
background-color: #0056b3;
transform: scale(1.05);
}

blockquote {
border-left: 4px solid #007bff;
padding-left: 20px;
margin: 20px 0;
color: #666;
}

footer {
background-color: #f8f9fa;
padding: 10px;
text-align: center;
position: absolute;
width: 100%;
bottom: 0;
}

@media (max-width: 768px) {
.container {
padding: 10px;
}
h2,
p,
ul {
font-size: 16px;
}
}
</style>
</head>

<body>
<header>
<h1>Exclusive Offer - Savings</h1>
</header>
<section>
<div class="container">
<h2>🎉 Grab your savings now with our unbeatable new discounts every week! 💸</h2>
<p>Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍️</p>
<p>Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.</p>
<h3>Benefits:</h3>
<ul>
<li>Up to 50% off on selected items</li>
<li>Exclusive discounts for members</li>
<li>Free shipping on orders over $50</li>
</ul>
<h3>Terms and Conditions:</h3>
<ul>
<li>Offer valid while stocks last</li>
<li>Discounts apply only to selected items</li>
<li>Cannot be combined with other offers</li>
</ul>
<h3>Customer Testimonials:</h3>
<blockquote>
<p>"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.</p>
</blockquote>
<h3>FAQs:</h3>
<ul>
<li><strong>How long is this offer valid?</strong> - The offer is valid until the end of the month or while stocks last.</li>
<li><strong>Can I use the discount on sale items?</strong> - The discount applies to selected items, including sale items.</li>
</ul>
<h3>Contact Us:</h3>
<p>If you have any questions, feel free to contact our support team at <a href="mailto:[email protected]">[email protected]</a>.</p>
<a href="index.html" class="main-btn">Back to Offers</a>
</div>
</section>
<footer>
<p>&copy; 2024 Your Company. All rights reserved.</p>
</footer>
</body>

</html>
118 changes: 118 additions & 0 deletions .history/Html-files/offers1_20240727215004.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offer Details - Savings</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #f8f9fa;
padding: 20px;
text-align: center;
}

.container {
padding: 20px;
}

h1,
h2 {
color: #333;
}

p {
color: #555;
}

.main-btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}

.main-btn:hover {
background-color: #0056b3;
transform: scale(1.05);
}

blockquote {
border-left: 4px solid #007bff;
padding-left: 20px;
margin: 20px 0;
color: #666;
}

footer {
background-color: #f8f9fa;
padding: 10px;
text-align: center;
position: absolute;
width: 100%;
bottom: 0;
}

@media (max-width: 768px) {
.container {
padding: 10px;
}
h2,
p,
ul {
font-size: 16px;
}
}
</style>
</head>

<body>
<header>
<h1>Exclusive Offer - Savings</h1>
</header>
<section>
<div class="container">
<h2>🎉 Grab your savings now with our unbeatable new discounts every week! 💸</h2>
<p>Don't miss out on our exclusive offers! 🎉 Enjoy massive discounts 💸 on your favorite items and save big on every purchase! 🛍️</p>
<p>Each week, we bring you the best deals on a variety of products, from electronics to fashion. Our discounts are designed to help you save money while getting the best value for your purchases.</p>
<h3>Benefits:</h3>
<ul>
<li>Up to 50% off on selected items</li>
<li>Exclusive discounts for members</li>
<li>Free shipping on orders over $50</li>
</ul>
<h3>Terms and Conditions:</h3>
<ul>
<li>Offer valid while stocks last</li>
<li>Discounts apply only to selected items</li>
<li>Cannot be combined with other offers</li>
</ul>
<h3>Customer Testimonials:</h3>
<blockquote>
<p>"I saved so much with these discounts! The best part is the free shipping. Highly recommend!" - Alex R.</p>
</blockquote>
<h3>FAQs:</h3>
<ul>
<li><strong>How long is this offer valid?</strong> - The offer is valid until the end of the month or while stocks last.</li>
<li><strong>Can I use the discount on sale items?</strong> - The discount applies to selected items, including sale items.</li>
</ul>
<h3>Contact Us:</h3>
<p>If you have any questions, feel free to contact our support team at <a href="mailto:[email protected]">[email protected]</a>.</p>
<a href="index.html" class="main-btn">Back to Offers</a>
</div>
</section>
<footer>
<p>&copy; 2024 Your Company. All rights reserved.</p>
</footer>
</body>

</html>
Loading

0 comments on commit 68bbb19

Please sign in to comment.