feat: per-repo issue tracker, Gitea support, PR review pipeline #10
@@ -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: |
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user