This plugin just blindly assigns everyone and, as q3k has already pointed out, just isn't particularly useful. We might want to roll our own, for example: 19: 40:41 <+Remosi> I want the virtual owner thing, we could call it Gerrit Workgroup Synthesizer Queuing, or gwsq for short. Change-Id: Ib12a921ae4047ac6a734035dd0900c8964fb12d8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/350 Reviewed-by: riking <rikingcoding@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| 
 | |
| let inherit (pkgs) fetchurl;
 | |
| in {
 | |
|   # https://gerrit.googlesource.com/plugins/owners
 | |
|   owners = fetchurl {
 | |
|     url = "https://storage.googleapis.com/tazjins-data/tvl/owners_3.2.jar";
 | |
|     sha256 = "1xw1q3g0353aw5jqxp69n85f8y57l2p51np37n8r34kzbn5r4iz7";
 | |
|   } // { name = "owners"; };
 | |
| }
 |