feat(visual): updated border-radius for list components (#DS-2171) #440
Workflow file for this run
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: Notification PR | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
notify: | |
name: Pull Request Notification | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notification | |
uses: mattermost/action-mattermost-notify@master | |
env: | |
PR_URL: https://github.com/${{ github.repository }}/pull/${{ github.event.number }} | |
with: | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }} | |
MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_NAME }} | |
MATTERMOST_USERNAME: ${{ secrets.MM_BOT_NAME }} | |
TEXT: | | |
[${{ github.repository }}] | [${{ github.event.pull_request.title }} #${{ github.event.number }}](${{ env.PR_URL }}) was created by ${{ github.actor }} | |
- name: Notification to BotChannel | |
uses: mattermost/action-mattermost-notify@master | |
env: | |
PR_URL: https://github.com/${{ github.repository }}/pull/${{ github.event.number }} | |
with: | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }} | |
MATTERMOST_CHANNEL: ${{ secrets.MM_CHANNEL_BOT_PR }} | |
MATTERMOST_USERNAME: ${{ secrets.MM_BOT_NAME }} | |
TEXT: | | |
[${{ github.repository }}] | [${{ github.event.pull_request.title }} #${{ github.event.number }}](${{ env.PR_URL }}) was created by ${{ github.actor }} |