Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
with:
payload: |
{
"Notification Type": "Pull Request",
"Notification URL":"${{ github.event.pull_request.html_url }}",
"GitHub Repo": "${{ github.repository }}",
"Notification Title": "${{ steps.sanitize-title.outputs.safe-title }}"
"Notification_Type": "Pull Request",
"Notification_URL":"${{ github.event.pull_request.html_url }}",
"GitHub_Repo": "${{ github.repository }}",
"Notification_Title": "${{ steps.sanitize-title.outputs.safe-title }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
Expand All @@ -72,10 +72,10 @@ jobs:
with:
payload: |
{
"Notification Type": "Issue",
"Notification URL":"${{ github.event.issue.html_url }}",
"GitHub Repo": "${{ github.repository }}",
"Notification Title": "${{ steps.sanitize-title.outputs.safe-title }}"
"Notification_Type": "Issue",
"Notification_URL":"${{ github.event.issue.html_url }}",
"GitHub_Repo": "${{ github.repository }}",
"Notification_Title": "${{ steps.sanitize-title.outputs.safe-title }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
Expand All @@ -86,10 +86,10 @@ jobs:
with:
payload: |
{
"Notification Type": "Issue comment",
"Notification URL":"${{ github.event.comment.html_url }}",
"GitHub Repo": "${{ github.repository }}",
"Notification Title": "${{ steps.sanitize-title.outputs.safe-title }}"
"Notification_Type": "Issue comment",
"Notification_URL":"${{ github.event.comment.html_url }}",
"GitHub_Repo": "${{ github.repository }}",
"Notification_Title": "${{ steps.sanitize-title.outputs.safe-title }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
Loading