Skip to content

Commit

Permalink
Create Thank_You.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hegdepavankumar authored Dec 2, 2023
1 parent 1be33e2 commit 9b0cd00
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/Thank_You.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Thank You on Star

on:
watch:
types: [started]

jobs:
send-thank-you:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 14

- name: Install NPM dependencies
run: npm install

- name: Send Thank-You Message
run: |
echo "Thank you for starring the VMware-Workstation-Pro-17-Licence-Keys repository! 🌟" > thankYouMessage.txt
cat thankYouMessage.txt
curl -X POST -H "Content-Type: application/json" -d '{"message": "Thank you for your star!"}' https://your-messaging-service-api.com/send-message

0 comments on commit 9b0cd00

Please sign in to comment.