diff --git a/.github/workflows/gate-verify.yml b/.github/workflows/gate-verify.yml index 34d22a50..b13ee695 100644 --- a/.github/workflows/gate-verify.yml +++ b/.github/workflows/gate-verify.yml @@ -11,11 +11,12 @@ jobs: verify-gate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 with: fetch-depth: 0 - name: Verify Gate-Passed trailer + if: github.event.pull_request.user.login != 'dependabot[bot]' run: | commits=$(git log --format="%H" origin/main..HEAD) if [ -z "$commits" ]; then diff --git a/crates/paroche/src/lib.rs b/crates/paroche/src/lib.rs index 2615c6c2..0d899267 100644 --- a/crates/paroche/src/lib.rs +++ b/crates/paroche/src/lib.rs @@ -41,7 +41,6 @@ pub fn build_router(state: AppState) -> Router { .nest("/api/v1", routes::subtitle::subtitle_routes()) .nest("/api/renderers", routes::renderer::renderer_routes()) .nest("/opds", opds::opds_routes()) - .nest("/api/renderers", routes::renderer::renderer_routes()) .merge(routes::stream::stream_routes()) .nest("/rest", subsonic::subsonic_routes()) .nest("/api/zones", routes::zone::zone_routes())