Skip to content

chore(chat-client): bump chat client ui types dependency #72

chore(chat-client): bump chat client ui types dependency

chore(chat-client): bump chat client ui types dependency #72

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"
}