We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c131e3a commit b65af9bCopy full SHA for b65af9b
1 file changed
.github/workflows/started-notify.yml
@@ -1,14 +1,20 @@
1
-name: Started Notify
+name: Star Notify
2
on:
3
watch:
4
types: [ started ]
5
jobs:
6
Notify:
7
runs-on: ubuntu-latest
8
steps:
9
- - name: Download Scripts
+ - name: Download Script
10
run: |
11
wget https://raw.githubusercontent.com/foyoux/started-notify/main/.github/workflows/started_notify.py#${{github.run_id}}
12
- - name: Send Notify Email
+ - name: Send Email
13
+ env:
14
+ SMTP_HOST: ${{ secrets.NOTIFY_SMTP_HOST }}
15
+ SMTP_PORT: ${{ secrets.NOTIFY_SMTP_PORT }}
16
+ SMTP_USER: ${{ secrets.NOTIFY_SMTP_USER }}
17
+ SMTP_PASSWORD: ${{ secrets.NOTIFY_SMTP_PASSWORD }}
18
+ STARGAZER_LOGIN: ${{ github.actor }}
19
- python started_notify.py ${{github.token}} ${{secrets.NOTIFY_EMAIL}}
20
+ python started_notify.py ${{github.token}} "${{secrets.NOTIFY_EMAIL}}"
0 commit comments