fix: 修复 React 18 StrictMode 同时挂载两个表格的问题 #1350
Workflow file for this run
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: 👨💻👩💻 PR Auto Assign Reviewer | |
on: | |
pull_request_target: | |
types: [opened] | |
jobs: | |
add-reviewer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add assignees | |
uses: actions-cool/issues-helper@main | |
with: | |
actions: 'add-assignees' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
assignees: ${{ github.event.pull_request.user.login }} | |
- name: Add reviewers | |
uses: actions-cool/pr-welcome@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
pr-emoji: '+1, rocket' | |
reviewers: 'serializedowen,lcx-seima,lijinke666,wjgogogo,stone-lyl,GaoFuhong' | |
review-creator: false |