Skip to content

fix: 修正messageAPI类型定义 #74

fix: 修正messageAPI类型定义

fix: 修正messageAPI类型定义 #74

Workflow file for this run

name: PR Check & Notifier
on:
pull_request:
branches: [main]
types: [opened, edited, reopened, synchronize]
jobs:
add-assigness:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm run lint
- name: Work Weixin Notifier
uses: jerray/work-weixin-notifier@v1.1.0
with:
key: ${{ secrets.weixin_bot_key }}
content: |
# 【NodeSDK】 <font color="warning">PR</font> [ <font color="info">${{github.event.pull_request.state}}</font> ]
> 标题: ${{ github.event.pull_request.title }}
> 发起人: ${{ github.event.pull_request.user.login }}
> 详情: [${{github.event.pull_request.html_url}}](${{github.event.pull_request.html_url}})
> 请关注: <@nillwang> <@jackqqxu>
type: markdown
status: ${{ job.status }}