Star Notify #124
This file contains hidden or 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
| name: Star Notify | |
| on: | |
| watch: | |
| types: [started] | |
| jobs: | |
| Notify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download Scripts | |
| run: | | |
| wget https://raw.githubusercontent.com/foyoux/started-notify/main/.github/workflows/started_notify.py#${{github.run_id}} | |
| - name: Send Email | |
| run: | | |
| python started_notify.py ${{github.token}} ${{secrets.NOTIFY_EMAIL}} |