From 3a797dcf44c2fc8d37db9bb56681c5ebb7cd10cd Mon Sep 17 00:00:00 2001 From: Sarah Marshall <33814365+samarsha@users.noreply.github.com> Date: Wed, 7 Apr 2021 10:50:51 -0700 Subject: [PATCH] Remove old automerge workflow GitHub has added support for automerging now, so this workflow is no longer needed. --- .github/workflows/automerge.yml | 38 --------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/automerge.yml diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml deleted file mode 100644 index 143313aa57e..00000000000 --- a/.github/workflows/automerge.yml +++ /dev/null @@ -1,38 +0,0 @@ -# This action allows using the automerge label to automatically merge in pull requests that have been reviewed and that pass -# status checks (similar to the autocomplete functionality of Azure DevOps). -name: automerge -on: - pull_request: - # Note that we only support automerge on branches that have required checks. - branches: - - main - - feature/* - types: - - labeled - - unlabeled - - synchronize - - opened - - edited - - ready_for_review - - reopened - - unlocked - pull_request_review: - # Note that we only support automerge on branches that have required checks. - branches: - - main - - feature/* - types: - - submitted - check_suite: - types: - - completed - status: {} -jobs: - automerge: - runs-on: ubuntu-latest - steps: - - name: automerge - uses: "pascalgn/automerge-action@4536e8847eb62fe2f0ee52c8fa92d17aa97f932f" - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - MERGE_METHOD: squash