Skip to content

feat: Add API endpoint for updating task order (v2) #3

feat: Add API endpoint for updating task order (v2)

feat: Add API endpoint for updating task order (v2) #3

Workflow file for this run

name: Send Email
on:
push:
branches:
- main
jobs:
send-email:
runs-on: ubuntu-latest
steps:
- name: Send email notification
uses: dawidd6/action-send-mail@v3
with:
# SMTP Configuration
server_address: smtp.gmail.com
server_port: 465
username: ${{ secrets.MAIL_USERNAME }}
password: ${{ secrets.MAIL_PASSWORD }}
# Email details
subject: "πŸ“Œ New Commit to Main"
to: ErfanMelon@outlook.com,Alireza3205@gmail.com
from: PhoneixTaskApi
content_type: text/plain
body: |
πŸš€ A new commit was pushed to the main branch! πŸŽ‰
πŸ“‚ Repository: ${{ github.repository }}
βœ‰οΈ Commit Message: ${{ github.event.head_commit.message }}
πŸ‘€ Author: ${{ github.event.head_commit.author.name }}
πŸ”‘ Commit SHA: ${{ github.sha }}
πŸ” Compare Changes: ${{ github.event.compare }}
⏰ Timestamp: ${{ github.event.head_commit.timestamp }}
🌟 Happy coding!
πŸ”„ Triggered automatically by GitHub Actions