From ea3343cb29e13f50b401e776b89628505938c58f Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 13 Jan 2020 15:09:06 +0100 Subject: [PATCH] chore: remove github auto assign This was supposed to auto-assign reviewers to new PRs. However, it's really not all that helpful in practice. --- .github/auto_assign.yml | 27 --------------------------- .github/workflows/pull_request.yml | 12 ------------ 2 files changed, 39 deletions(-) delete mode 100644 .github/auto_assign.yml delete mode 100644 .github/workflows/pull_request.yml diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml deleted file mode 100644 index 4f74b3a72..000000000 --- a/.github/auto_assign.yml +++ /dev/null @@ -1,27 +0,0 @@ -# Set to true to add reviewers to pull requests -addReviewers: true - -# Set to true to add assignees to pull requests -addAssignees: false - -# A list of reviewers to be added to pull requests (GitHub user name) -reviewers: - - Stebalien - - djdv - - aschmahmann - - dirkmc - - lanzafame - - hsanjuan - -# A number of reviewers added to the pull request -# Set 0 to add all the reviewers (default: 0) -numberOfReviewers: 1 - -# A list of assignees, overrides reviewers if set -# assignees: -# - assigneeA - -# A list of keywords to be skipped the process that add reviewers if pull requests include it -skipKeywords: - - WIP - - RFC diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml deleted file mode 100644 index 08c797466..000000000 --- a/.github/workflows/pull_request.yml +++ /dev/null @@ -1,12 +0,0 @@ -on: pull_request -name: Add reviewers/assignees to Pull Requests -jobs: - autoAssign: - name: Auto Assign - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Auto Assign - uses: ipfs/auto-assign@v1.0.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}