From 817a41d6351839bb2950a5cd7612beb5b39c514e Mon Sep 17 00:00:00 2001 From: Jirka Borovec Date: Thu, 28 Jan 2021 09:04:49 +0100 Subject: [PATCH] drop bots (#5679) --- .github/workflows/events-ocasional.yml | 26 -------------------------- .github/workflows/events-recurrent.yml | 20 -------------------- 2 files changed, 46 deletions(-) delete mode 100644 .github/workflows/events-ocasional.yml delete mode 100644 .github/workflows/events-recurrent.yml diff --git a/.github/workflows/events-ocasional.yml b/.github/workflows/events-ocasional.yml deleted file mode 100644 index a6cd43a837..0000000000 --- a/.github/workflows/events-ocasional.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Ocasional events - -on: - push: - branches: [master, "release/*"] - pull_request_target: {} - -jobs: - - # autoupdate is a GitHub Action that auto-updates pull requests branches whenever changes land on their destination branch. - # see: https://github.com/marketplace/actions/auto-update - pr-auto-update: - name: Auto-update PR - runs-on: ubuntu-18.04 - steps: - - uses: docker://chinthakagodawita/autoupdate-action:v1 - # todo: this shall be resolved with https://github.com/chinthakagodawita/autoupdate/issues/100 - continue-on-error: true - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - DRY_RUN: "false" - PR_FILTER: "labelled" - PR_LABELS: "0:] Ready-To-Go,has conflicts" - MERGE_MSG: "Branch was auto-updated." - RETRY_COUNT: "3" - RETRY_SLEEP: "500" diff --git a/.github/workflows/events-recurrent.yml b/.github/workflows/events-recurrent.yml deleted file mode 100644 index 6b9382e299..0000000000 --- a/.github/workflows/events-recurrent.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Recurrent events - -on: - push: {} - -jobs: - - # This label will then be managed by this action. - # It will be added to PRs with merge conflicts and removed from PRs without conflicts. - # https://github.com/mschilde/auto-label-merge-conflicts - pr-label-conflicts: - name: Label PR conflits - runs-on: ubuntu-20.04 - steps: - - uses: mschilde/auto-label-merge-conflicts@v2.0 - with: - CONFLICT_LABEL_NAME: "has conflicts" - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MAX_RETRIES: 3 - WAIT_MS: 5000