Creating databases ontop of shares/from replicas failing due to SQL parsing errors #548
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: slack-notifications-prs-issues | |
on: | |
pull_request: | |
types: [ready_for_review] | |
issues: | |
types: [opened] | |
jobs: | |
slack-action: | |
runs-on: ubuntu-latest | |
name: Notify Team in Slack | |
steps: | |
- name: Curl to webhook | |
run: | | |
curl -X POST -H 'Content-type: application/json' --data '{"text":"A new ${{ github.event_name }} has been published. Please review ${{ github.event.pull_request.html_url }}${{ github.event.issue.html_url }}"}' ${{ secrets.SLACK_WEBHOOK }} |