Skip to content

🤖 测试

🤖 测试 #9

name: GitHub Actions Weather Bot
# 触发条件:在 push 到 main 分支后
on:
push:
jobs:
bot:
runs-on: ubuntu-latest
steps:
- name: 'Checkout codes'
uses: actions/checkout@v4
- name: 'Get weather report'
run: bash ./github/workflows/weather.sh
- name: 'Send mail'
uses: dawidd6/action-send-mail@master
with:
serveraddress: smtp.qq.com
serverport: 465
username: ${{ secrets.MAILUSERNAME }}
password: ${{ secrets.MAILPASSWORD }}
subject: Shenzhen Weather Report
body: file://result.html
to: [email protected],[email protected]
from: XiNan GitHub Actions
content_type: text/html
# Optional carbon copy recipients:
# cc: [email protected],[email protected]
# Optional blind carbon copy recipients:
# bcc: [email protected],[email protected]