fix: $ in labels escaped
This commit is contained in:
		@@ -1239,8 +1239,10 @@ class ApplicationDeploymentJob implements ShouldQueue, ShouldBeEncrypted
 | 
			
		||||
        if ($this->pull_request_id !== 0) {
 | 
			
		||||
            $labels = collect(generateLabelsApplication($this->application, $this->preview));
 | 
			
		||||
        }
 | 
			
		||||
        $labels = $labels->map(function ($value, $key) {
 | 
			
		||||
            return escapeDollarSign($value);
 | 
			
		||||
        });
 | 
			
		||||
        $labels = $labels->merge(defaultLabels($this->application->id, $this->application->uuid, $this->pull_request_id))->toArray();
 | 
			
		||||
 | 
			
		||||
        // Check for custom HEALTHCHECK
 | 
			
		||||
        $this->custom_healthcheck_found = false;
 | 
			
		||||
        if ($this->application->build_pack === 'dockerfile' || $this->application->dockerfile) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user