Failed to establish a new connection: [Errno 111] Connection refused #105
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: Send slack alerts for new GitHub issues | |
on: | |
issues: # workflow.yml should be placed in the default branch to trigger for issues | |
types: [opened] | |
jobs: | |
send-slack-alert: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Post to a Slack channel | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
channel-id: 'h2o-3-github-issues' | |
payload: | | |
{ | |
"text": ":github: *H2O-3 GitHub Issue Opened*", | |
"attachments": [ | |
{ | |
"text": "*Title:* ${{ github.event.issue.title }}\n*Link:* ${{ github.event.issue.html_url }}", | |
"color": "good", | |
"fallback": "Build Alert" | |
} | |
] | |
} | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |