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

View File

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

View File

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