From 2191fcd459599b409f16e625e989a4183b9f3723 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 2 Oct 2023 22:33:53 +0900 Subject: [PATCH] Remove bors-ng --- .github/bors.toml | 7 ------- .github/workflows/ci.yml | 29 +---------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 .github/bors.toml diff --git a/.github/bors.toml b/.github/bors.toml deleted file mode 100644 index 587a4e8d4..000000000 --- a/.github/bors.toml +++ /dev/null @@ -1,7 +0,0 @@ -status = [ - "ci", - "test (aarch64-unknown-linux-gnu)", - "test (aarch64-apple-darwin)", - "test (x86_64-apple-darwin)", -] -timeout_sec = 7200 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19f65e157..4c6e28615 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: pull_request: push: branches: - - staging + - master schedule: - cron: '0 1 * * *' @@ -223,30 +223,3 @@ jobs: - name: Install shellcheck uses: taiki-e/install-action@shellcheck - run: shellcheck $(git ls-files '*.sh') - - # This job doesn't actually test anything, but they're used to tell bors the - # build completed, as there is no practical way to detect when a workflow is - # successful listening to webhooks only. - # - # ALL THE PREVIOUS JOBS NEEDS TO BE ADDED TO THE `needs` SECTION OF THIS JOB! - - ci-success: - name: ci - if: github.event_name == 'push' && success() - needs: - - test - - features - - dependencies - - codegen - - rustfmt - - clippy - - miri - - careful - - san - - loom - - docs - - shellcheck - runs-on: ubuntu-latest - steps: - - name: Mark the job as a success - run: exit 0