diff --git a/.github/workflows/ci_l1.yaml b/.github/workflows/ci_l1.yaml index 5c282dab5b..51931a89db 100644 --- a/.github/workflows/ci_l1.yaml +++ b/.github/workflows/ci_l1.yaml @@ -6,10 +6,6 @@ on: pull_request: branches: ["**"] paths-ignore: - - "README.md" - - "LICENSE" - - "**/README.md" - - "**/docs/**" - "crates/vm/levm/**" # We run this in a separate workflow concurrency: diff --git a/.github/workflows/ci_skipped.yaml b/.github/workflows/ci_skipped.yaml deleted file mode 100644 index 2980f85614..0000000000 --- a/.github/workflows/ci_skipped.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: CI Skipped -on: - pull_request: - branches: ["**"] - paths: - - 'README.md' - - 'LICENSE' - - "**/README.md" - - "**/docs/**" - - '!**/*.rs' - - '!**/*.toml' - - '!**/*.yaml' - - '!**/*.sh' - - '!**/*.json' - - '!**/*.rlp' - - '!**Dockefile' - - '!**Makefile' - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -jobs: - lint: - # "Lint" is a required check, don't change the name - name: Lint - runs-on: ubuntu-latest - if: false - steps: [run: true] - - test: - # "Test" is a required check, don't change the name - name: Test - runs-on: ubuntu-latest - if: false - steps: [run: true] - - docker-build: - # "Build Docker" is a required check, don't change the name - name: Build Docker - runs-on: ubuntu-latest - if: false - steps: [run: true] - - all-tests: - # "Integration Test" is a required check, don't change the name - name: Integration Test - runs-on: ubuntu-latest - if: false - steps: [run: true]