Skip to content

Commit 220e2d7

Browse files
authored
Merge pull request #169 from sgratzl/release/v4.4.3
Release v4.4.3
2 parents fca4aab + 1ba6781 commit 220e2d7

File tree

4 files changed

+157
-131
lines changed

4 files changed

+157
-131
lines changed

.github/workflows/create_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
echo "next_tag=$(npm version --no-git-tag-version ${{ github.event.inputs.versionName }} --preid ${{ github.event.inputs.preid }})" >> $GITHUB_OUTPUT
3030
- name: Create pull request into main
31-
uses: peter-evans/create-pull-request@v6
31+
uses: peter-evans/create-pull-request@v7
3232
with:
3333
branch: release/${{ steps.version.outputs.next_tag }}
3434
commit-message: 'chore: release ${{ steps.version.outputs.next_tag }}'
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Dependabot auto-merge
2+
on:
3+
pull_request:
4+
branches:
5+
- 'dev' # only into dev
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
dependabot:
13+
runs-on: ubuntu-latest
14+
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'sgratzl/chartjs-chart-boxplot'
15+
steps:
16+
- name: Dependabot metadata
17+
id: metadata
18+
uses: dependabot/fetch-metadata@v2
19+
with:
20+
github-token: '${{ secrets.GITHUB_TOKEN }}'
21+
- name: Enable auto-merge for Dependabot PRs
22+
# patch only
23+
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
24+
run: gh pr merge --auto --merge "$PR_URL"
25+
env:
26+
PR_URL: ${{github.event.pull_request.html_url}}
27+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sgratzl/chartjs-chart-boxplot",
33
"description": "Chart.js module for charting boxplots and violin charts",
4-
"version": "4.4.2",
4+
"version": "4.4.3",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -51,8 +51,7 @@
5151
"require": "./build/index.cjs",
5252
"scripts": "./build/index.umd.min.js",
5353
"types": "./build/index.d.ts"
54-
},
55-
"./.pnp.cjs": "./.pnp.cjs"
54+
}
5655
},
5756
"sideEffects": false,
5857
"files": [

0 commit comments

Comments
 (0)