github-action-server-chan icon indicating copy to clipboard operation
github-action-server-chan copied to clipboard

Server酱微信推送 GitHub Action

使用方法

  1. 将 sendkey 添加到仓库的 Actions secrets 中,命名为 sendkey

  1. 在 workflow 中使用,例子如下:
- uses: josStorer/[email protected]
  id: current-time
  with:
    format: YYYYMMDD-HH
    utcOffset: "+08:00"
- uses: easychen/[email protected]
  with:
    sendkey: ${{ secrets.sendkey }}
    title: "server酱Action更新啦 ${{ steps.current-time.outputs.formattedTime }}"
    desp: "可以为空。支持Markdown"

一个完整的例子:

在仓库根目录新建 .github/workflows/test.yml,内容如下:

name: 'build-test'
on:
  push:
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: ServerChan · Server酱通知
        uses: easychen/[email protected]
        with:
          sendkey: ${{ secrets.sendkey }}
          title: "我是一个小测试😝"