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 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 }}'
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 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 },
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" : [
You can’t perform that action at this time.
0 commit comments