From 29a353de569152d7534b5a4c434de4580aa9025b Mon Sep 17 00:00:00 2001 From: Ivar Flakstad <69173633+ivarflakstad@users.noreply.github.com> Date: Tue, 25 Jun 2024 21:53:15 +0200 Subject: [PATCH] Remove redundant change detection from server.yaml action --- .github/workflows/server.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/server.yaml b/.github/workflows/server.yaml index 05c3980c..c3330539 100644 --- a/.github/workflows/server.yaml +++ b/.github/workflows/server.yaml @@ -15,27 +15,6 @@ env: RUSTUP_MAX_RETRIES: 10 jobs: - detect-changes: - name: Detect which files have changed - runs-on: ubuntu-latest - timeout-minutes: 3 - # Map a step output to a job output - outputs: - agency: ${{ steps.changes.outputs.agency }} - frontend: ${{ steps.changes.outputs.frontend }} - llmlingua_service: ${{ steps.changes.outputs.llmlingua_service }} - proto: ${{ steps.changes.outputs.proto }} - server: ${{ steps.changes.outputs.server }} - steps: - - uses: actions/checkout@v4 - - - name: Find changes - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v2 - id: changes - with: - token: ${{ github.token }} - filters: .github/file-filters.yml - coverage-and-linting: name: Test coverage & linting runs-on: ubuntu-latest @@ -43,17 +22,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - uses: dorny/paths-filter@v3 - id: changes - with: - filters: | - src: - - 'src/**' - - # run only if some file in 'src' folder was changed - - if: steps.changes.outputs.src == 'true' - run: ... - - name: Install Protoc uses: arduino/setup-protoc@v3 with: