diff options
Diffstat (limited to 'src/af83.rs')
-rw-r--r-- | src/af83.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/af83.rs b/src/af83.rs index bc8876c..1547700 100644 --- a/src/af83.rs +++ b/src/af83.rs @@ -1,6 +1,6 @@ use pull_request::CommitRef; -pub fn job_name(commit_ref: CommitRef) -> String { +pub fn job_name(commit_ref: &CommitRef) -> String { let (sha, _) = commit_ref.sha.split_at(5); format!("{}-{}", commit_ref.branch, sha) |