feat: vue 版本的 useRequest 的结果能否支持解构 #28
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: Issue Add Label | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-qr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add QR | |
uses: actions-cool/issues-helper@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
actions: 'create-comment' | |
body: | | |
welcome discuss in wechat: <br /> <img src="https://cdn.jsdelivr.net/gh/innocces/DrawingBed/latest/qrcode.jpg" width="300" /> | |
emoji: '+1,heart' | |
add-labels: | |
runs-on: ubuntu-latest | |
if: contains(github.event.issue.body, '复现 repo') == false | |
steps: | |
- name: Add labels | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'add-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'need reproduce' |