fix: 修复删除多个文件夹时确认按钮不显示加载态的问题,并减少删除时不必要的basedir请求
#2869
This file contains hidden or 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: SonarCloud Scan | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| sonarcloud: | |
| name: SonarCloud | |
| if: github.repository == '1Panel-dev/1Panel' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: SonarCloud Scan | |
| uses: SonarSource/sonarcloud-github-action@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |