在 SimpleList 文件中,onCopy 方法当前返回的是复制操作的目标数据,而没有提供关于被复制项的索引信息 #165
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 Reply | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-helper: | |
runs-on: ubuntu-latest | |
steps: | |
- name: need demo | |
if: github.event.label.name == 'need demo' | |
uses: actions-cool/issues-helper@v2.5.0 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. To fix it quickly, We need you to provide a complete demo on codesandbox . | |
你好 @${{ github.event.issue.user.login }},我们需要你在codesandbox上提供一个完整的demo,便于我们快速修复哦。 | |
- name: pr welcome | |
if: github.event.label.name == 'pr welcome' | |
uses: actions-cool/issues-helper@v2.5.0 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. We totally like your proposal/feedback, welcome PR 🎉。 | |
你好 @${{ github.event.issue.user.login }},我们完全同意你的提议/反馈,欢迎PR 🎉。 |