Skip to content

getAgentConnection().isOnHold() returns false when another agent silently monitors them #54

getAgentConnection().isOnHold() returns false when another agent silently monitors them

getAgentConnection().isOnHold() returns false when another agent silently monitors them #54

Workflow file for this run

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