File tree Expand file tree Collapse file tree 4 files changed +157
-131
lines changed Expand file tree Collapse file tree 4 files changed +157
-131
lines changed Original file line number Diff line number Diff line change 28
28
run : |
29
29
echo "next_tag=$(npm version --no-git-tag-version ${{ github.event.inputs.versionName }} --preid ${{ github.event.inputs.preid }})" >> $GITHUB_OUTPUT
30
30
- name : Create pull request into main
31
- uses : peter-evans/create-pull-request@v6
31
+ uses : peter-evans/create-pull-request@v7
32
32
with :
33
33
branch : release/${{ steps.version.outputs.next_tag }}
34
34
commit-message : ' chore: release ${{ steps.version.outputs.next_tag }}'
Original file line number Diff line number Diff line change
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}}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sgratzl/chartjs-chart-boxplot" ,
3
3
"description" : " Chart.js module for charting boxplots and violin charts" ,
4
- "version" : " 4.4.2 " ,
4
+ "version" : " 4.4.3 " ,
5
5
"publishConfig" : {
6
6
"access" : " public"
7
7
},
51
51
"require" : " ./build/index.cjs" ,
52
52
"scripts" : " ./build/index.umd.min.js" ,
53
53
"types" : " ./build/index.d.ts"
54
- },
55
- "./.pnp.cjs" : " ./.pnp.cjs"
54
+ }
56
55
},
57
56
"sideEffects" : false ,
58
57
"files" : [
You can’t perform that action at this time.
0 commit comments