Skip to content

docker msodbcsql fix #92

docker msodbcsql fix

docker msodbcsql fix #92

name: "post ready pull to slack"
on:
pull_request:
branches: [main]
types:
- opened
- reopened
- ready_for_review
jobs:
slack-ready-for-review:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Send GitHub trigger payload to Slack
id: slack
uses: slackapi/[email protected]
with:
payload: |
{
"text": ":pr-open: Pull request ready for review by ${{ github.event.pull_request.user.login }}\n\n<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":pr-open: Pull request ready for review by ${{ github.event.pull_request.user.login }}\n\n<${{ github.event.pull_request.html_url }}|${{ github.event.pull_request.title }}>"
}
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK