feat: per-repo issue tracker, Gitea support, PR review pipeline #10

Merged
sharang merged 7 commits from feat/per-repo-tracker-config into main 2026-03-11 12:14:00 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 71d8f0fd17 - Show all commits

View File

@@ -29,7 +29,7 @@ jobs:
name: Format
runs-on: docker
container:
image: rust:1.89-bookworm
image: rust:1.94-bookworm
steps:
- name: Checkout
run: |
@@ -47,7 +47,7 @@ jobs:
name: Clippy
runs-on: docker
container:
image: rust:1.89-bookworm
image: rust:1.94-bookworm
steps:
- name: Checkout
run: |
@@ -81,7 +81,7 @@ jobs:
runs-on: docker
if: github.ref == 'refs/heads/main'
container:
image: rust:1.89-bookworm
image: rust:1.94-bookworm
steps:
- name: Checkout
run: |
@@ -104,7 +104,7 @@ jobs:
runs-on: docker
needs: [fmt, clippy, audit]
container:
image: rust:1.89-bookworm
image: rust:1.94-bookworm
steps:
- name: Checkout
run: |

View File

@@ -7,6 +7,7 @@ pub mod findings;
pub mod graph;
pub mod issues;
pub mod mcp;
#[allow(clippy::too_many_arguments)]
pub mod repositories;
pub mod sbom;
pub mod scans;

View File

@@ -30,7 +30,6 @@ pub async fn fetch_repositories(page: u64) -> Result<RepositoryListResponse, Ser
}
#[server]
#[allow(clippy::too_many_arguments)]
pub async fn add_repository(
name: String,
git_url: String,