Fix bug that prevented actions from triggering.
All checks were successful
semver Build semver has succeeded
format Build format has succeeded
build Build build has succeeded
clippy Build clippy has succeeded
rust-test Build rust-test has succeeded

This commit is contained in:
Tom Alexander 2024-09-29 18:09:07 -04:00
parent 69dd1ba156
commit c04b4e8da5
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -63,7 +63,6 @@ pub async fn launch_server() -> Result<(), Box<dyn std::error::Error>> {
.collect();
tracing::debug!("Using repo whitelist: {:?}", allowed_repos);
let allowed_repos = HashSet::new();
let app = Router::new()
.route("/hook", post(hook))
.layer(middleware::from_fn(verify_signature))