Skip to content

Commit

Permalink
Merge branch 'main' into my-feature-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalivarapubindusree committed Jun 5, 2024
2 parents 8e95827 + 9f0649e commit 1f3bbb7
Show file tree
Hide file tree
Showing 17 changed files with 2,434 additions and 1,010 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-comment-on-pr-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Comment on PR Merge

on:
pull_request:
types: [closed]

jobs:
comment:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest

steps:
- name: Add Comment to Merged PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -H "Authorization: token $GITHUB_TOKEN" \
-X POST \
-d '{"body":"🎉 Your pull request has been successfully merged! 🎉 Thank you for your contribution to our project. Your efforts are greatly appreciated. Keep up the fantastic work! 🚀"}' \
"https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"liveServer.settings.port": 5502
"liveServer.settings.port": 5506
}
10 changes: 5 additions & 5 deletions contact us.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h2>Get in Touch</h2>
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
.contact-form .input-focus {
width: 100%;
padding: 12px;
margin-bottom: 15px;
Expand Down Expand Up @@ -206,16 +206,16 @@ <h1>Get in Touch</h1>
<form id="contact-form" action="http://127.0.0.1:5500/send-email" method="POST" onsubmit="sendEmail(); reset(); return false;">
<div class="row">
<div class="col-md-6 col-sm-6">
<input name="name" id="name" type="text" class="form-control" placeholder="Your Name" required>
<input name="name" id="name" type="text" class="input-focus" placeholder="Your Name" required>
</div>
<div class="col-md-6 col-sm-6">
<input name="email" type="email" id="email" class="form-control" placeholder="Your Email" required>
<input name="email" type="email" id="email" class="input-focus" placeholder="Your Email" required>
</div>
<div class="col-12">
<textarea name="message" class="form-control" id="msg" placeholder="Message" rows="6" required></textarea>
<textarea name="message" class="input-focus" id="msg" placeholder="Message" rows="6" required></textarea>
</div>
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8">
<input name="submit" type="submit" class="form-control submit" id="submit" value="SEND MESSAGE">
<input name="submit" type="submit" class="form-control submit" id="contact-submit" value="SEND MESSAGE">
</div>
</div>
</form>
Expand Down
Loading

0 comments on commit 1f3bbb7

Please sign in to comment.