为什么next-version-taro-hooks.vercel.app 这个网址最近都无法访问,只能通过vpn访问 #18
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' |