From 833882b9ea7a7858ecf778a4c0256c158022b491 Mon Sep 17 00:00:00 2001 From: Ajay Dhangar <99037494+Ajay-Dhangar@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:55:05 +0530 Subject: [PATCH] Revert "Create autoAssign.yml" --- .github/workflows/autoAssign.yml | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/autoAssign.yml diff --git a/.github/workflows/autoAssign.yml b/.github/workflows/autoAssign.yml deleted file mode 100644 index d3fb0e98f..000000000 --- a/.github/workflows/autoAssign.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Auto Assign and Limit Issues -on: - issues: - types: [labeled, opened] - -jobs: - auto-assign: - runs-on: ubuntu-latest - - permissions: - issues: write - - steps: - - name: Auto Assign for bug - uses: wow-actions/auto-assign@v3 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - assignees: ajay-dhangar - includeLabels: bug - - - name: Auto Assign for enhancement - uses: wow-actions/auto-assign@v3 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - assignees: ajay-dhangar - includeLabels: enhancement - - limit-issues: - runs-on: ubuntu-latest - - permissions: - issues: write - - steps: - - name: Limit number of issues per user - uses: ./.github/actions/issue-limit - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}