mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	#2045 add short version as fallback to Slack payload
This commit is contained in:
		
					parent
					
						
							
								5572884c6b
							
						
					
				
			
			
				commit
				
					
						834d38a8fb
					
				
			
		
					 1 changed files with 9 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -33,6 +33,7 @@ type SlackPayload struct {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
type SlackAttachment struct {
 | 
			
		||||
	Fallback string `json:"fallback"`
 | 
			
		||||
	Color    string `json:"color"`
 | 
			
		||||
	Text     string `json:"text"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -111,7 +112,12 @@ func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, e
 | 
			
		|||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	slackAttachments := []SlackAttachment{{Color: slack.Color, Text: attachmentText}}
 | 
			
		||||
	slackAttachments := []SlackAttachment{{
 | 
			
		||||
		Fallback: fmt.Sprintf("%s pushed %s to %s/%s: %s",
 | 
			
		||||
			p.Pusher, commitString, p.Repo.Name, branchName, p.CompareUrl),
 | 
			
		||||
		Color: slack.Color,
 | 
			
		||||
		Text:  attachmentText,
 | 
			
		||||
	}}
 | 
			
		||||
 | 
			
		||||
	return &SlackPayload{
 | 
			
		||||
		Channel:     slack.Channel,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue