Add debug statements to know which branch got triggered
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
bdbc8b6382
commit
9f55b37f34
1 changed files with 2 additions and 0 deletions
|
@ -75,7 +75,9 @@ async fn hooks_inner(req: Request<Incoming>, secret: &str) -> Result<Hook, Error
|
|||
|
||||
let hook: ForgejoHook = serde_json::from_slice(&payload[..])?;
|
||||
return Ok(Hook::Forgejo(hook));
|
||||
debug!("Found Forgejo payload.");
|
||||
} else if let Some(val) = headers.get("X-Gitlab-Token") {
|
||||
debug!("Found Gitlab payload");
|
||||
if secret != val {
|
||||
return Err(Error::InvalidSecret);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue