@hexonet/semantic-release-whmcs 5.0.8 → 5.0.10

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.
@@ -30,7 +30,7 @@ jobs:
30
30
  - name: Enable auto-merge for Dependabot PRs
31
31
  # (fixes, features but not major upgrades!)
32
32
  if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
33
- run: gh pr merge --auto --merge "$PR_URL"
33
+ run: gh pr merge --auto -d -r "$PR_URL"
34
34
  env:
35
35
  PR_URL: ${{github.event.pull_request.html_url}}
36
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
36
+ GITHUB_TOKEN: ${{secrets.RTLDEV_MW_CI_TOKEN}}
@@ -31,5 +31,6 @@ jobs:
31
31
  GITHUB_TOKEN: ${{ secrets.RTLDEV_MW_CI_TOKEN }}
32
32
  GITHUB_REPO: ${{ vars.GH_REPO }}
33
33
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34
- RTLDEV_MW_NOTIFICATION_URI: ${{ secrets.RTLDEV_MW_CI_NOTIFICATION_URI }}
34
+ TEAMS_NOTIFICATION_URI: ${{ secrets.RTLDEV_MW_CI_NOTIFICATION_URI }}
35
+ COMMIT_SHA: ${{ github.sha }}
35
36
  run: npx semantic-release
package/.releaserc.json CHANGED
@@ -11,7 +11,7 @@
11
11
  [
12
12
  "@semantic-release/exec",
13
13
  {
14
- "successCmd": "gulp -f gulpfile.cjs publish --notes \"${encodeURIComponent(nextRelease.notes)}\""
14
+ "successCmd": "gulp -f gulpfile.cjs publishNotification --update \"${nextRelease.version}\" --type \"${nextRelease.type}\" --notes \"${encodeURIComponent(nextRelease.notes)}\""
15
15
  }
16
16
  ],
17
17
  "@semantic-release/npm",
package/HISTORY.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.0.10](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.9...v5.0.10) (2023-12-6)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump puppeteer from 21.5.2 to 21.6.0 ([fe038ec](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/fe038ec2c249e8db6351b980e7309fc0dbe9cb1a))
7
+
8
+ ## [5.0.9](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.8...v5.0.9) (2023-11-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** bump puppeteer from 21.5.1 to 21.5.2 ([55093a4](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/55093a4c44c91a2ed066861d0f8147ae6edbe421))
14
+
1
15
  ## [5.0.8](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.7...v5.0.8) (2023-11-10)
2
16
 
3
17
 
package/gulpfile.cjs CHANGED
@@ -1 +1 @@
1
- exports.publish = require('rtldev-middleware-gulp-release-notification-plugin');
1
+ exports.publishNotification = require('rtldev-middleware-gulp-release-notification-plugin');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hexonet/semantic-release-whmcs",
3
3
  "description": "`semantic-release` plugin for auto-publishing on WHMCS marketplace",
4
- "version": "5.0.8",
4
+ "version": "5.0.10",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "publishConfig": {
@@ -79,7 +79,7 @@
79
79
  "c8": "^8.0.0",
80
80
  "gulp": "^4.0.2",
81
81
  "prettier": "^3.0.0",
82
- "rtldev-middleware-gulp-release-notification-plugin": "github:centralnicgroup-opensource/rtldev-middleware-gulp-release-notification-plugin",
82
+ "rtldev-middleware-gulp-release-notification-plugin": "github:centralnicgroup-opensource/rtldev-middleware-gulp-release-notification-plugin#semver:^1.0.0",
83
83
  "semantic-release": "^22.0.5",
84
84
  "stream-buffers": "^3.0.2"
85
85
  },