diff --git a/.github/workflows/pr-add-label.yml b/.github/workflows/pr-add-label.yml deleted file mode 100644 index aeadb540a0666..0000000000000 --- a/.github/workflows/pr-add-label.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: pr-add-label - -on: - pull_request_target: - types: [opened, edited, reopened, synchronize] - -concurrency: - group: ${{github.workflow}} - ${{github.event_name}} - cancel-in-progress: true - -jobs: - add-label: - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - name: Check PR number - id: pr_number - run: echo "PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV - - - name: Run add-label Action - uses: thinkasany/pr-label-action@master - with: - github_token: ${{ secrets.DOOCS_BOT_ACTION_TOKEN }} - pr_number: ${{ env.PR_NUMBER }} - organize_name: "doocs" - team_name: "leetcode-algorithm"