Extra HEAD request is made when using from_prefix
constructor
#2
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: Issue Slack Notifier | |
on: | |
issues: | |
types: [opened, reopened, edited] | |
jobs: | |
notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send notification to Slack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"action": "${{ github.event.action }}", | |
"issue_url": "${{ github.event.issue.html_url }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} | |
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK |