@hexonet/semantic-release-whmcs 5.0.6 → 5.0.7
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,19 +1,26 @@
|
|
1
1
|
name: Dependabot auto-merge
|
2
|
-
on:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
2
|
+
on:
|
3
|
+
pull_request:
|
4
|
+
types:
|
5
|
+
- opened
|
6
|
+
- synchronize
|
7
7
|
|
8
8
|
jobs:
|
9
9
|
tests:
|
10
10
|
uses: ./.github/workflows/test.yml
|
11
11
|
secrets: inherit
|
12
|
+
permissions:
|
13
|
+
contents: read
|
14
|
+
security-events: write
|
15
|
+
|
12
16
|
dependabot:
|
13
|
-
name: "Auto-merge Dependabot PR"
|
14
|
-
runs-on: ubuntu-latest
|
15
|
-
needs: tests
|
16
17
|
if: ${{ github.actor == 'dependabot[bot]' }}
|
18
|
+
name: Auto-merge Dependabot PR
|
19
|
+
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
|
20
|
+
needs: tests
|
21
|
+
permissions:
|
22
|
+
contents: write
|
23
|
+
pull-requests: write
|
17
24
|
steps:
|
18
25
|
- name: Dependabot metadata
|
19
26
|
id: metadata
|
@@ -6,8 +6,12 @@ on:
|
|
6
6
|
|
7
7
|
jobs:
|
8
8
|
release:
|
9
|
-
name: Release
|
10
|
-
runs-on:
|
9
|
+
name: Release
|
10
|
+
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
|
11
|
+
permissions:
|
12
|
+
contents: write
|
13
|
+
issues: write
|
14
|
+
deployments: write
|
11
15
|
steps:
|
12
16
|
- name: Checkout
|
13
17
|
uses: actions/checkout@v4
|
@@ -24,8 +28,8 @@ jobs:
|
|
24
28
|
run: npm ci
|
25
29
|
- name: Release
|
26
30
|
env:
|
27
|
-
GITHUB_TOKEN: ${{ secrets.
|
28
|
-
GITHUB_REPO: ${{
|
31
|
+
GITHUB_TOKEN: ${{ secrets.RTLDEV_MW_CI_TOKEN }}
|
32
|
+
GITHUB_REPO: ${{ vars.GH_REPO }}
|
29
33
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
30
|
-
RTLDEV_MW_NOTIFICATION_URI: ${{ secrets.
|
34
|
+
RTLDEV_MW_NOTIFICATION_URI: ${{ secrets.RTLDEV_MW_CI_NOTIFICATION_URI }}
|
31
35
|
run: npx semantic-release
|
@@ -1,15 +1,13 @@
|
|
1
1
|
name: Lint codebase & Execute tests
|
2
2
|
on:
|
3
3
|
workflow_call:
|
4
|
-
pull_request:
|
5
|
-
types:
|
6
|
-
- opened
|
7
|
-
- synchronize
|
8
4
|
|
9
5
|
jobs:
|
10
6
|
test:
|
11
7
|
name: 🧪 Testing & Testing
|
12
|
-
runs-on:
|
8
|
+
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
|
9
|
+
permissions:
|
10
|
+
contents: read
|
13
11
|
strategy:
|
14
12
|
matrix:
|
15
13
|
node-version: ${{ fromJson(vars.RTLDEV_MW_CI_NODE_MATRIX) }}
|
@@ -39,8 +37,11 @@ jobs:
|
|
39
37
|
|
40
38
|
perform_codeql_analysis:
|
41
39
|
name: 🧪 CodeQL Analysis
|
42
|
-
runs-on:
|
40
|
+
runs-on: ${{ vars.RTLDEV_MW_CI_OS }}
|
43
41
|
needs: test
|
42
|
+
permissions:
|
43
|
+
contents: read
|
44
|
+
security-events: write
|
44
45
|
steps:
|
45
46
|
- name: Checkout
|
46
47
|
uses: actions/checkout@v4
|
package/HISTORY.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [5.0.7](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.6...v5.0.7) (2023-11-10)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump puppeteer from 21.4.1 to 21.5.0 ([ae157a2](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/ae157a2799f644cd80769b6b8f703dcf8cc3e65c))
|
7
|
+
* **deps:** bump puppeteer from 21.5.0 to 21.5.1 ([f2df862](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/f2df86223c1e208ed43d6028354852fe47ae95f2))
|
8
|
+
|
1
9
|
## [5.0.6](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.5...v5.0.6) (2023-10-31)
|
2
10
|
|
3
11
|
|
package/package.json
CHANGED