We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f43ca1e commit e087d58Copy full SHA for e087d58
.github/workflows/issues-slack-notify.yml
@@ -0,0 +1,19 @@
1
+on:
2
+ issues:
3
+ types: [opened]
4
+name: Issue created Slack Notification
5
+jobs:
6
+ slackNotification:
7
+ name: Slack Notification
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Slack Notification
12
+ uses: rtCamp/action-slack-notify@v2
13
+ env:
14
+ SLACK_CHANNEL: ws-cloudnative-internal
15
+ SLACK_ICON: https://github.com/fluidicon.png
16
+ SLACK_MESSAGE: 'An issue has been opened in Terraform Sysdig Provider repository'
17
+ SLACK_TITLE: Issue Created
18
+ SLACK_USERNAME: gitHub
19
+ SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
0 commit comments