MCPcopy Create free account
hub / github.com/cachix/cloud.devenv.sh / GitHubCommit

Class GitHubCommit

backend/src/github/model.rs:227–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225#[diesel(belongs_to(GitHubRepo, foreign_key = id))]
226#[diesel(table_name = github_commit)]
227pub struct GitHubCommit {
228 pub id: uuid::Uuid,
229 pub rev: String,
230 #[diesel(column_name = git_ref)]
231 pub r#ref: String,
232 pub repo_id: i64,
233 pub author: String,
234 pub message: String,
235}
236
237impl GitHubCommit {
238 pub async fn create_job(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected