Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into feature/convert-s…
Browse files Browse the repository at this point in the history
…tyling-of-EmptyView.jsx
  • Loading branch information
Rucha-Ambaliya committed Jan 8, 2025
2 parents aecd046 + f99d6ee commit 8812577
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 36 deletions.
52 changes: 20 additions & 32 deletions .github/workflows/auto-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,56 +20,44 @@ jobs:

# Respond to new issues
- name: Respond to new issues
if: ${{ github.event_name == 'issues' && github.event.action == 'opened' }}
run: |
echo "Hey @${{ github.actor }}, Welcome to 💖TelMedSphere! 🎊" > comment.txt
echo "Thanks for opening an issue! 🙌 Please wait for the issue to be assigned." >> comment.txt
echo "Happy Coding!! ✨" >> comment.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event.action == 'opened' && github.event_name == 'issues' }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body-path: comment.txt
body: |
Hey @${{ github.actor }}, Welcome to 💖TelMedSphere !!! 🎊
Thanks for opening an issue! 🙌 Please wait for the issue to get reviewed, if it is relevant then it will get assigned to you.
Happy Coding !!! ✨
# Respond to closed issues
- name: Respond to closed issues
if: ${{ github.event_name == 'issues' && github.event.action == 'closed' }}
run: |
echo "Hello @${{ github.event.issue.user.login }}! Your issue #${{ github.event.issue.number }} has been closed." > comment.txt
echo "Thank you for your contribution to 💖TelMedSphere!!! 🙌" >> comment.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event.action == 'closed' && github.event_name == 'issues' }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.issue.number }}
body-path: comment.txt
body: |
Hello @${{ github.event.issue.user.login }}! Your issue #${{ github.event.issue.number }} has been closed.
Thank you for interest in 💖TelMedSphere !!! 🙌
# Respond to new PRs
- name: Respond to new PRs
if: ${{ github.event_name == 'pull_request' && github.event.action == 'opened' }}
run: |
echo "Hey @${{ github.actor }}, Welcome to 💖TelMedSphere 🎊" > comment.txt
echo "Thanks for your contribution! Your effort makes this project better. Keep it up! 🙌" >> comment.txt
echo "Please wait for the PR to be reviewed." >> comment.txt
echo "Happy Coding!! ✨" >> comment.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event.action == 'opened' && github.event_name == 'pull_request' }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body-path: comment.txt
body: |
Hey @${{ github.actor }}, Welcome to 💖TelMedSphere !!! 🎊
Thanks for raising PR, Your effort makes this project better. 🙌
Please wait for the PR to be reviewed.
Happy Coding!! ✨
# Respond to merged PRs
- name: Respond to merged PRs
if: ${{ github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged }}
run: |
echo "@${{ github.event.pull_request.user.login }} Congrats, Your pull request has been successfully merged 🥳🎉" > comment.txt
echo "Thank you for your contribution to 💖TelMedSphere!!" >> comment.txt
echo "Happy coding 🎊, Keep Contributing 🙌 !!!" >> comment.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event.action == 'closed' && github.event.pull_request.merged == true }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body-path: comment.txt
body: |
@${{ github.event.pull_request.user.login }} Congrats, Your pull request has been successfully merged 🥳🎉
Thank you for your contribution to 💖TelMedSphere !!!
Happy coding 🎊, Keep Contributing 🙌 !!!
8 changes: 4 additions & 4 deletions frontend/src/pages/LandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ const LandingPage = () => {



<section className="faq-section">
<section className="faq-section">
<div className="faq-div" ref={faqRef}>
<div className="img-div">
<div className="img-div">
<img src="faq-img.png" alt="faq" />
</div>
<div className="content">
Expand All @@ -236,7 +236,7 @@ const LandingPage = () => {
{faqs.map((item, index) => (
<Accordion
key={index}
className="faq-item"
className="faq-item object-cover shadow-md hover:shadow-[0px_0px_10px_2px_rgba(59,130,246,0.6)]"
expanded={openFaqIndex === index}
onChange={() => handleFaqClick(index)}
>
Expand All @@ -260,4 +260,4 @@ const LandingPage = () => {
)
}

export default LandingPage;
export default LandingPage;

0 comments on commit 8812577

Please sign in to comment.