Skip to content

Commit b13ff72

Browse files
Merge branch 'master' into feat/panel
Signed-off-by: Vidit Kushwaha <[email protected]>
2 parents 73b6676 + 37284a3 commit b13ff72

29 files changed

+2582
-41
lines changed

.github/workflows/bump-meshery-version.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,44 @@ jobs:
100100
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
101101
assignees: l5io
102102
draft: false
103+
bump-layer5:
104+
runs-on: ubuntu-latest
105+
needs: versions-check
106+
steps:
107+
- name: Checkout Layer5 code
108+
uses: actions/checkout@v4
109+
with:
110+
repository: layer5io/layer5
111+
fetch-depth: 1
112+
token: ${{ secrets.RELEASEDRAFTER_PAT }}
113+
- uses: actions/setup-node@v4
114+
with:
115+
node-version: 18
116+
cache: "npm"
117+
cache-dependency-path: '**/package-lock.json'
118+
- name: Make changes to pull request
119+
run: npm install @layer5/sistent@${{needs.versions-check.outputs.current}}
120+
- name: Create Pull Request
121+
id: cpr
122+
uses: peter-evans/create-pull-request@v7
123+
with:
124+
token: ${{ secrets.RELEASEDRAFTER_PAT }}
125+
commit-message: Bump sistent v${{ needs.versions-check.outputs.current }} dependencies
126+
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
127+
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
128+
signoff: true
129+
branch: bump-sistent-bot
130+
delete-branch: true
131+
title: '[Chore]: Bump Sistent v${{ needs.versions-check.outputs.current }}'
132+
add-paths: |
133+
package.json
134+
package-lock.json
135+
body: |
136+
Update to Sistent v${{ needs.versions-check.outputs.current }}
137+
138+
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
139+
assignees: l5io
140+
draft: false
103141
bump-meshery-cloud:
104142
runs-on: ubuntu-latest
105143
needs: versions-check

0 commit comments

Comments
 (0)