Autosend #15
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
name: "Autosend" | |
on: | |
push: | |
branches: master | |
schedule: | |
- cron: 30 0 */10 * * # 每10天8点30自动执行,北京时间减8个钟头 | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
autosend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: pushBotMsg | |
uses: joelwmale/webhook-action@master | |
with: | |
url: "https://api.groupme.com/v3/bots/post" | |
body: '{"text" : "keepGV active", "bot_id" : "${{ secrets.GM_BOT_ID }}" }' |