Skip to content

chore: bump @aws/mynah-ui from 4.21.1 to 4.21.3 #74

chore: bump @aws/mynah-ui from 4.21.1 to 4.21.3

chore: bump @aws/mynah-ui from 4.21.1 to 4.21.3 #74

Workflow file for this run

name: Publish a notification to Slack
on:
pull_request:
branches: [main]
jobs:
notify:
name: Slack notification
if: github.event.pull_request.user.login != 'dependabot[bot]'
runs-on: [ubuntu-latest]
steps:
- name: Post message
uses: slackapi/[email protected]
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
payload: |
{
"title": ${{ toJson(github.event.pull_request.title) }},
"author": ${{ toJson(github.event.pull_request.user.login) }},
"link": ${{ toJson(github.event.pull_request.html_url) }},
"repository": "Language-servers"
}