@pixpilot/scaffoldfy-configs 0.40.3 → 0.40.4

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pixpilot/scaffoldfy-configs
2
2
 
3
+ ## 0.40.4
4
+
5
+ ### Patch Changes
6
+
7
+ - update notification step for release status
8
+
3
9
  ## 0.40.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixpilot/scaffoldfy-configs",
3
3
  "type": "module",
4
- "version": "0.40.3",
4
+ "version": "0.40.4",
5
5
  "author": "PixPilot <m.doaie@hotmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -29,11 +29,11 @@
29
29
  "devDependencies": {
30
30
  "@types/node": "^22.18.11",
31
31
  "eslint": "^9.38.0",
32
+ "@internal/vitest-config": "0.1.0",
32
33
  "@internal/eslint-config": "0.3.0",
33
34
  "@internal/prettier-config": "0.0.1",
34
- "@internal/tsdown-config": "0.1.0",
35
- "@internal/vitest-config": "0.1.0",
36
- "@pixpilot/scaffoldfy": "0.55.1"
35
+ "@pixpilot/scaffoldfy": "0.55.1",
36
+ "@internal/tsdown-config": "0.1.0"
37
37
  },
38
38
  "prettier": "@internal/prettier-config",
39
39
  "publishConfig": {
@@ -62,15 +62,16 @@ jobs:
62
62
  provenance: 'false'
63
63
 
64
64
  notify:
65
- name: Notify on Release Failure
65
+ name: Notify Release Status
66
66
  needs: [ci, release]
67
67
  if: always()
68
68
  runs-on: ubuntu-latest
69
69
 
70
70
  steps:
71
- - name: Send Telegram notification
71
+ - name: Send Telegram release-status notification
72
72
  uses: pixpilot/notify-action@v1
73
73
  with:
74
74
  status: ${{ contains(needs.*.result, 'failure') && 'failure' || contains(needs.*.result, 'cancelled') && 'cancelled' || 'success' }}
75
+ notify-on: any
75
76
  telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
76
77
  telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
@@ -50,15 +50,16 @@ jobs:
50
50
  provenance: 'true'
51
51
 
52
52
  notify:
53
- name: Notify on Release Failure
53
+ name: Notify Release Status
54
54
  needs: [ci, release]
55
55
  if: always()
56
56
  runs-on: ubuntu-latest
57
57
 
58
58
  steps:
59
- - name: Send Telegram notification
59
+ - name: Send Telegram release-status notification
60
60
  uses: pixpilot/notify-action@v1
61
61
  with:
62
62
  status: ${{ contains(needs.*.result, 'failure') && 'failure' || contains(needs.*.result, 'cancelled') && 'cancelled' || 'success' }}
63
+ notify-on: any
63
64
  telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
64
65
  telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}