Skip to content

Commit

Permalink
gh-webhook-receiver: Make routing key more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
dasJ committed Dec 26, 2024
1 parent a691815 commit 2ce1918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ofborg/src/bin/github-webhook-receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fn setup_amqp(chan: &mut Channel) -> Result<(), Box<dyn Error>> {
chan.bind_queue(easyamqp::BindQueueConfig {
queue: queue_name.clone(),
exchange: "github-events".to_owned(),
routing_key: Some(String::from("pull_request.nixos/nixpkgs")),
routing_key: Some(String::from("pull_request.*")),
no_wait: false,
})?;
Ok(())
Expand Down

0 comments on commit 2ce1918

Please sign in to comment.