From ca994f6a3c732c37cc446073e44b5298fa72a9e3 Mon Sep 17 00:00:00 2001 From: Sanchith Hegde <22217505+SanchithHegde@users.noreply.github.com> Date: Tue, 10 Jan 2023 18:22:52 +0530 Subject: [PATCH] ci: remove label trigger for CI runs (#334) --- .github/workflows/CI.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 32e0767576..513d4a74cf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,12 +12,6 @@ on: # - "Cargo.toml" pull_request: - types: - - "labeled" - - "opened" - - "ready_for_review" - - "reopened" - - "synchronize" # paths: # - ".github/workflows/**" # - "crates/**" @@ -53,7 +47,6 @@ env: jobs: formatting: name: Check formatting - if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'S-awaiting-merge') }} runs-on: ubuntu-latest steps: - name: Checkout repository @@ -71,7 +64,6 @@ jobs: check-msrv: name: Check compilation on MSRV toolchain - if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'S-awaiting-merge') }} runs-on: ${{ matrix.os }} strategy: fail-fast: true @@ -113,7 +105,6 @@ jobs: # cargo-deny: # name: Run cargo-deny - # if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'S-awaiting-merge') }} # runs-on: ubuntu-latest # strategy: # matrix: @@ -135,7 +126,6 @@ jobs: test: name: Run tests on stable toolchain - if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'S-awaiting-merge') }} runs-on: ${{ matrix.os }} strategy: fail-fast: false