-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Anishkagupta04:main' into main
- Loading branch information
Showing
12 changed files
with
819 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,30 @@ | ||
<!-- ISSUE & PR TITLE SHOULD BE SAME--> | ||
## Description | ||
<!--Please include a brief description of the changes or features added--> | ||
|
||
[Please include a brief description of the changes or features added] | ||
|
||
## Related Issues | ||
|
||
[Cite any related issue(s) this pull request addresses. If none, simply state “None”] | ||
<!--Cite any related issue(s) this pull request addresses. If none, simply state “None”--> | ||
- Closes # | ||
|
||
## Type of PR | ||
|
||
- [ ] Bug fix | ||
- [ ] Feature enhancement | ||
- [ ] Documentation update | ||
- [ ] Other (specify): _______________ | ||
<!-- Mention PR Type according to the issue in brackets below and check the below box --> | ||
- [ ] () | ||
|
||
## Screenshots / videos (if applicable) | ||
[Attach any relevant screenshots or videos demonstrating the changes] | ||
<!--Attach any relevant screenshots or videos demonstrating the changes--> | ||
|
||
|
||
## Checklist | ||
|
||
<!-- [X] - put a cross/X inside [] to check the box --> | ||
- [ ] I have gone through the [contributing guide](https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-/) | ||
- [ ] I have updated my branch and synced it with project `main` branch before making this PR | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have tested the changes thoroughly before submitting this pull request. | ||
- [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes. | ||
- [ ] I have commented my code, particularly in hard-to-understand areas. | ||
<!-- [X] - put a cross/X inside [] to check the box --> | ||
|
||
|
||
## Additional context: | ||
[Include any additional information or context that might be helpful for reviewers.] | ||
<!--Include any additional information or context that might be helpful for reviewers.--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,47 @@ | ||
name: Auto Label Issues | ||
name: Auto Label Issue | ||
|
||
on: | ||
issues: | ||
types: [opened, edited] | ||
types: [opened, reopened, edited] | ||
|
||
jobs: | ||
label_issues: | ||
label_issue: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
- name: Label Issue | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const issue = context.payload.issue; | ||
const title = issue.title.toLowerCase(); | ||
const body = issue.body.toLowerCase(); | ||
const labels = []; | ||
if (title.includes('gssoc') || body.includes('gssoc')) { | ||
labels.push('GSSoC'); | ||
} | ||
if (title.includes('enhancement') || body.includes('enhancement')) { | ||
labels.push('Enhancement'); | ||
} | ||
const issueBody = issue.body ? issue.body.toLowerCase() : ''; | ||
const issueTitle = issue.title.toLowerCase(); | ||
if (title.includes('bug') || body.includes('bug')) { | ||
labels.push('Bug'); | ||
// 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 (issueBody.includes('documentation') || issueTitle.includes('doc') || issueBody.includes('readme')) { | ||
await addLabel('documentation'); | ||
} | ||
if (title.includes('documentation') || body.includes('documentation')) { | ||
labels.push('Documentation'); | ||
if (issueBody.includes('feature') || issueBody.includes('enhancement') || issueTitle.includes('add') || issueTitle.includes('implement')) { | ||
await addLabel('enhancement'); | ||
} | ||
if (labels.length > 0) { | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.name, | ||
labels: labels | ||
}); | ||
if (issueBody.includes('bug') || issueBody.includes('fix') || issueTitle.includes('fix') || issueTitle.includes('resolve')) { | ||
await addLabel('bug'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
|
||
name: Auto Label PR | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, edited,synchronize] | ||
|
||
jobs: | ||
label_pr: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Label PR | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const pr = context.payload.pull_request; | ||
// Add gssoc label to all PRs | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: pr.number, | ||
labels: ['gssoc'] | ||
}); | ||
const prBody = pr.body ? pr.body.toLowerCase() : ''; | ||
const prTitle = pr.title.toLowerCase(); | ||
const addLabel = async (label) => { | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: pr.number, | ||
labels: [label] | ||
}); | ||
}; | ||
if (prBody.includes('documentation') || prTitle.includes('doc') || prBody.includes('readme')) { | ||
await addLabel('documentation'); | ||
} | ||
if (prBody.includes('feature') || prBody.includes('enhancement') || prTitle.includes('add') || prTitle.includes('implement')) { | ||
await addLabel('enhancement'); | ||
} | ||
if (prBody.includes('bug') || prBody.includes('fix') || prTitle.includes('fix') || prTitle.includes('resolve')) { | ||
await addLabel('bug'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
emailjs.init("Your_User_ID"); // Replace with your actual EmailJS User ID | ||
|
||
// Function to validate email address | ||
export function isValidEmail(email) { | ||
// Simple email validation regex | ||
const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; | ||
if (!regex.test(email)) { | ||
return false; | ||
} | ||
|
||
// Extract domain | ||
const domain = email.split('@')[1].toLowerCase(); | ||
const validDomains = ['gmail.com', 'outlook.com', 'yahoo.com']; | ||
|
||
return validDomains.includes(domain); | ||
} | ||
|
||
document.addEventListener('DOMContentLoaded', function() { | ||
document.getElementById('subscribeForm').addEventListener('submit', function(event) { | ||
event.preventDefault(); | ||
|
||
var email = document.getElementById('emailInput').value; | ||
|
||
if (!isValidEmail(email)) { | ||
alert('Please enter a valid email address from Gmail, Outlook, or Yahoo.'); | ||
return; | ||
} | ||
|
||
// Prepare the parameters to send | ||
var templateParams = { | ||
to_email: email, // Set the recipient's email | ||
from_name: 'Rapidoc', // Replace with your company or your name | ||
to_name: 'Subscriber', | ||
message: 'Thank you for subscribing to our newsletter!' | ||
}; | ||
|
||
// Send email | ||
emailjs.send('Your_Service_ID', 'Your_Template_ID', templateParams) | ||
.then(function(response) { | ||
console.log('Email sent successfully:', response); | ||
alert('Successfully subscribed to our newsletter!'); | ||
}, function(error) { | ||
console.error('Error sending email:', error); | ||
alert('Failed to send email. Please try again later.'); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.