@hexonet/semantic-release-whmcs 5.0.5 → 5.0.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,29 @@
|
|
1
|
+
name: Dependabot auto-merge
|
2
|
+
on: pull_request
|
3
|
+
|
4
|
+
permissions:
|
5
|
+
contents: write
|
6
|
+
pull-requests: write
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
tests:
|
10
|
+
uses: ./.github/workflows/test.yml
|
11
|
+
secrets: inherit
|
12
|
+
dependabot:
|
13
|
+
name: "Auto-merge Dependabot PR"
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
needs: tests
|
16
|
+
if: ${{ github.actor == 'dependabot[bot]' }}
|
17
|
+
steps:
|
18
|
+
- name: Dependabot metadata
|
19
|
+
id: metadata
|
20
|
+
uses: dependabot/fetch-metadata@v1
|
21
|
+
with:
|
22
|
+
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
23
|
+
- name: Enable auto-merge for Dependabot PRs
|
24
|
+
# (fixes, features but not major upgrades!)
|
25
|
+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
|
26
|
+
run: gh pr merge --auto --merge "$PR_URL"
|
27
|
+
env:
|
28
|
+
PR_URL: ${{github.event.pull_request.html_url}}
|
29
|
+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
@@ -15,7 +15,7 @@ jobs:
|
|
15
15
|
fetch-depth: 0
|
16
16
|
persist-credentials: false
|
17
17
|
- name: Setup NodeJS ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
|
18
|
-
uses: actions/setup-node@
|
18
|
+
uses: actions/setup-node@v4
|
19
19
|
with:
|
20
20
|
node-version: "${{ vars.RTLDEV_MW_CI_NODE_VERSION }}"
|
21
21
|
check-latest: true
|
@@ -1,9 +1,6 @@
|
|
1
1
|
name: Lint codebase & Execute tests
|
2
2
|
on:
|
3
|
-
|
4
|
-
branches:
|
5
|
-
- dependabot/** #branches are generated by https://github.com/dependabot
|
6
|
-
|
3
|
+
workflow_call:
|
7
4
|
pull_request:
|
8
5
|
types:
|
9
6
|
- opened
|
@@ -11,7 +8,7 @@ on:
|
|
11
8
|
|
12
9
|
jobs:
|
13
10
|
test:
|
14
|
-
name:
|
11
|
+
name: 🧪 Testing & Testing
|
15
12
|
runs-on: ubuntu-latest
|
16
13
|
strategy:
|
17
14
|
matrix:
|
@@ -21,7 +18,7 @@ jobs:
|
|
21
18
|
- name: Checkout
|
22
19
|
uses: actions/checkout@v4
|
23
20
|
- name: Setup NodeJS ${{ matrix.node-version }}
|
24
|
-
uses: actions/setup-node@
|
21
|
+
uses: actions/setup-node@v4
|
25
22
|
with:
|
26
23
|
node-version: ${{ matrix.node-version }}
|
27
24
|
cache: npm
|
@@ -41,16 +38,16 @@ jobs:
|
|
41
38
|
run: npm run test
|
42
39
|
|
43
40
|
perform_codeql_analysis:
|
44
|
-
name:
|
41
|
+
name: 🧪 CodeQL Analysis
|
45
42
|
runs-on: ubuntu-latest
|
46
43
|
needs: test
|
47
44
|
steps:
|
48
45
|
- name: Checkout
|
49
46
|
uses: actions/checkout@v4
|
50
|
-
- name: Setup NodeJS ${{
|
51
|
-
uses: actions/setup-node@
|
47
|
+
- name: Setup NodeJS ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
|
48
|
+
uses: actions/setup-node@v4
|
52
49
|
with:
|
53
|
-
node-version: ${{
|
50
|
+
node-version: ${{ vars.RTLDEV_MW_CI_NODE_VERSION }}
|
54
51
|
cache: npm
|
55
52
|
- name: Install dependencies
|
56
53
|
run: npm ci
|
package/HISTORY.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [5.0.6](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.5...v5.0.6) (2023-10-31)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **deps:** bump puppeteer from 21.4.0 to 21.4.1 ([8f29e2c](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/commit/8f29e2cd9ab2673b56d41b14ab7d1eafa48d25eb))
|
7
|
+
|
1
8
|
## [5.0.5](https://github.com/centralnicgroup-opensource/rtldev-middleware-semantic-release-whmcs/compare/v5.0.4...v5.0.5) (2023-10-23)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED