github.com/goreleaser/goreleaser@v1.25.1/www/docs/customization/announce/teams.md (about) 1 # Teams 2 3 To use [Teams](https://www.microsoft.com/de-de/microsoft-teams/group-chat-software), you need 4 to [create a Webhook](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook) 5 , and set following environment variable on your pipeline: 6 7 - `TEAMS_WEBHOOK` 8 9 After this, you can add following section to your `.goreleaser.yaml` config: 10 11 ```yaml 12 # .goreleaser.yaml 13 announce: 14 teams: 15 # Whether its enabled or not. 16 enabled: true 17 18 # Title template to use while publishing. 19 # 20 # Default: '{{ .ProjectName }} {{ .Tag }} is out!' 21 # Templates: allowed 22 title_template: 'GoReleaser {{ .Tag }} was just released!' 23 24 # Message template to use while publishing. 25 # 26 # Default: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}' 27 # Templates: allowed 28 message_template: 'Awesome project {{.Tag}} is out!' 29 30 # Color code of the message. You have to use hexadecimal. 31 # 32 # Default: '#2D313E' (the grey-ish from GoReleaser) 33 color: '' 34 35 # URL to an image to use as the icon for the message. 36 # 37 # Default: 'https://goreleaser.com/static/avatar.png' 38 icon_url: '' 39 ``` 40 41 !!! tip 42 Learn more about the [name template engine](/customization/templates/).