Send release notification to Mattermost #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Send release notification to Mattermost | |
on: | |
workflow_run: | |
workflows: | |
- "Release Charts" | |
push: | |
tags: | |
- \d+\.\d+\.\d+ | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mattermost/action-mattermost-notify@master | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
with: | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WH_ON_PREMISE_RELEASE }} | |
MATTERMOST_USERNAME: Github | |
MATTERMOST_ICON_URL: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/256px-GitHub_Invertocat_Logo.svg.png | |
TEXT: | | |
Опубликован On-Premise: ${{ github.event.workflow_run.head_branch }} | |
Документация: https://confluence.2gis.ru/display/ONPREM/Release+${{ github.event.workflow_run.head_branch }}+On-Premise |