-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1be33e2
commit 9b0cd00
Showing
1 changed file
with
28 additions
and
0 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 |
---|---|---|
@@ -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 |