Skip to content

Commit b346dc4

Browse files
authored
chore: add issue opened slack notification action (#73)
1 parent 807616b commit b346dc4

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 CloudFormation secure for cloud repository'
17+
SLACK_TITLE: Issue Created
18+
SLACK_USERNAME: gitHub
19+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

0 commit comments

Comments
 (0)