@flowfuse/driver-kubernetes 2.32.1-88ab5f6-202607021331.0 → 2.32.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,3 +16,23 @@ jobs:
16
16
  - uses: JS-DevTools/npm-publish@0fd2f4369c5d6bcfcde6091a7c527d810b9b5c3f # v4.1.5
17
17
  with:
18
18
  token: ${{ secrets.NPM_PUBLISH_TOKEN }}
19
+
20
+ notify-slack:
21
+ name: Notify about release failure
22
+ needs: [publish]
23
+ if: failure()
24
+ runs-on: ubuntu-latest
25
+
26
+ steps:
27
+ - name: Notify Slack
28
+ uses: FlowFuse/github-actions-workflows/actions/slack_notification@slack_notification/v1
29
+ with:
30
+ bot-token: ${{ secrets.SLACK_GHBOT_TOKEN }}
31
+ mode: channel
32
+ blocks: |
33
+ [
34
+ { "type": "header", "text": { "type": "plain_text", "text": ":x: ${{ github.workflow }} workflow failed", "emoji": true } },
35
+ { "type": "divider" },
36
+ { "type": "section", "text": { "type": "mrkdwn", "text": "<${{ github.server_url }}/${{ github.repository }}/actions/workflows/release-publish.yml|${{ github.workflow }}> workflow failed to complete successfully." } },
37
+ { "type": "section", "text": { "type": "mrkdwn", "text": "*Workflow run:*\n<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View>" } }
38
+ ]
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ #### 2.32.1: Release
2
+
3
+ - ci: Add slack notification to the release pipeline (#385)
4
+
1
5
  #### 2.32.0: Release
2
6
 
3
7
  - Sync changes to Insight support code across drivers (#383)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-kubernetes",
3
- "version": "2.32.1-88ab5f6-202607021331.0",
3
+ "version": "2.32.1",
4
4
  "description": "Kubernetes driver for FlowFuse",
5
5
  "main": "kubernetes.js",
6
6
  "scripts": {