Skip to content

Revert "feat: bugfix for artifacts upload (#749)" #197

Revert "feat: bugfix for artifacts upload (#749)"

Revert "feat: bugfix for artifacts upload (#749)" #197

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