From 16f1898894972e0812bb14b113e85ec1ce29cbb8 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Thu, 15 Apr 2021 21:07:38 +0200 Subject: [PATCH] Revert "Add auto update GitHub action" The auto update is creating merge commits instead of rebasing, therefore it is not the right choice. This reverts commit 81a602dd71d0613c48e549358a1862fb9e24908b. Signed-off-by: Till Maas --- .github/workflows/auto-update.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/auto-update.yml diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml deleted file mode 100644 index 98d3bdc..0000000 --- a/.github/workflows/auto-update.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Auto-update -# Auto-update only listens to `push` events. -# If a pull request is already outdated when enabling auto-merge, manually -# click on the "Update branch" button a first time to avoid having to wait for -# another commit to land on the base branch for the pull request to be updated. -# on: push -# If pull requests are always based on the same branches, only triggering the -# workflow when these branches receive new commits will minimize the workflow -# execution. -on: - push: - branches: - - main - -jobs: - Auto: - name: Auto-update - runs-on: ubuntu-latest - steps: - - uses: tibdex/auto-update@v2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }}