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 ce79d01 commit f0b7348Copy full SHA for f0b7348
.github/workflows/ci.yaml
@@ -22,6 +22,18 @@ on:
22
- release-*
23
24
jobs:
25
+ slack:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Send Slack alert notification
29
+ uses: slackapi/[email protected]
30
+ env:
31
+ SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
32
+ with:
33
+ channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
34
+ slack-message: |
35
+ Started CI for https://github.com/${{github.repository}}/commit/${{github.sha}}
36
+
37
code-scanning:
38
uses: ./.github/workflows/code_scanning.yaml
39
0 commit comments