diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index da6f7f2c..67a3aee1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,32 +1,30 @@ + ## Description + -[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”] + - Closes # ## Type of PR - -- [ ] Bug fix -- [ ] Feature enhancement -- [ ] Documentation update -- [ ] Other (specify): _______________ + +- [ ] () ## Screenshots / videos (if applicable) -[Attach any relevant screenshots or videos demonstrating the changes] + ## Checklist - + - [ ] 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. - + ## Additional context: -[Include any additional information or context that might be helpful for reviewers.] + diff --git a/.github/workflows/auto-label-issues.yml b/.github/workflows/auto-label-issues.yml index 96487408..73a20d7b 100644 --- a/.github/workflows/auto-label-issues.yml +++ b/.github/workflows/auto-label-issues.yml @@ -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'); } \ No newline at end of file diff --git a/.github/workflows/auto-label-pr.yml b/.github/workflows/auto-label-pr.yml new file mode 100644 index 00000000..a858a7af --- /dev/null +++ b/.github/workflows/auto-label-pr.yml @@ -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'); + } \ No newline at end of file diff --git a/Css-Files/Rateus.css b/Css-Files/Rateus.css index dfe28e37..c097ecb3 100644 --- a/Css-Files/Rateus.css +++ b/Css-Files/Rateus.css @@ -17,6 +17,7 @@ min-height: 100vh; padding: 20px; box-sizing: border-box; + width: 60%; } .popup { @@ -209,6 +210,7 @@ border: none; padding: 12px 20px; border-radius: 5px; + margin-left:190px; cursor: pointer; font-size: 16px; transition: background-color 0.3s ease, transform 0.2s ease; diff --git a/Html-Files/Css-Files/Experiencestyle.css b/Html-Files/Css-Files/Experiencestyle.css index ecd3327b..83721a40 100644 --- a/Html-Files/Css-Files/Experiencestyle.css +++ b/Html-Files/Css-Files/Experiencestyle.css @@ -603,25 +603,23 @@ align-items: center; } #doctor-list { - list-style-type: none; - padding: 0; - } - - #doctor-list li { + display: flex; + flex-wrap: wrap; + gap: 20px; /* Adjust space between items as needed */ + } + + #doctor-list li { border: 2px solid #4bb6b7; border-radius: 20px; padding: 30px; - margin: 20px 0; background-color: #2c3e50; font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 25px; color: #ecf0f1; - display: flex; - align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); - margin:30px; - - } + width: calc(33.333% - 20px); + box-sizing: border-box; + } #doctor-list li .content { flex-grow: 1; diff --git a/index.css b/index.css index f59fc67c..277e2918 100644 --- a/index.css +++ b/index.css @@ -394,7 +394,7 @@ form.php-email-form { #email { margin-bottom: 10px; border-bottom: none; - width: 30vw; + width: 100%; } #email, diff --git a/index.html b/index.html index 965f0e0a..e56a4b81 100644 --- a/index.html +++ b/index.html @@ -57,56 +57,7 @@ - Copy code - + @@ -787,6 +738,7 @@

Shikha Pandey

+
+
Thanks for the feedback! ❤️
+ +

Rapidoc

+ + + + + - - + + +





+ + + + + + \ No newline at end of file