connection.getMonitorCapabilities() returns undefined #56
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
# This workflow sends a message whenever an issue/issue comment is created, edited, reopened | |
# | |
# You can adjust the behavior by modifying this file. | |
name: Send GitHub Action trigger data to Slack workflow | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
- reopened | |
issue_comment: | |
types: | |
- created | |
- edited | |
jobs: | |
slack: | |
runs-on: ubuntu-latest | |
name: Trigger slack workflow | |
steps: | |
- name: slack-send | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"issueUrl" : ${{ github.event.issue.issue_url }} | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |