Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashsharma1911 authored Nov 1, 2024
2 parents 65ef630 + 329a20e commit 6b925d6
Show file tree
Hide file tree
Showing 98 changed files with 4,831 additions and 506 deletions.
7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 🐛 General Bug Report
about: Report an issue to help improve the project.
title: ''
title: '[Bug]'
labels: 'kind/bug'
assignees: ''
---
Expand All @@ -20,10 +20,7 @@ assignees: ''

#### Environment

- **Host OS:** Mac Linux Windows
- **Platform:** Docker or Kubernetes
- **Meshery Server Version:** stable-v
- **Meshery Client Version:** stable-v
<!-- Please mention the environment where you encountered the issue (e.g., browser, OS, etc.). -->

<!-- Optional
#### To Reproduce
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: 💡 Feature Request
about: Suggest an enhancement to Meshery.
title: ''
about: Suggest a new idea for Sistent.
title: '[Feature]'
labels: 'kind/enhancement'
assignees: ''
---
Expand Down
121 changes: 121 additions & 0 deletions .github/workflows/bump-meshery-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
name: Bump Meshery, Meshery Extensions and Meshery Cloud

on:
release:
types: [published]

jobs:
bump-meshery:
runs-on: ubuntu-latest
steps:
- name: Checkout Meshery code
uses: actions/checkout@v4
with:
repository: meshery/meshery
fetch-depth: 1
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
working-directory: ui
run: npm install @layer5/sistent@latest
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
commit-message: Bump sistent ${{ github.event.release.tag_name }} dependencies
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: bump-sistent-bot
delete-branch: true
title: '[Chore]: Bump ${{ github.event.release.name }}'
add-paths: |
ui/package.json
ui/package-lock.json
body: |
Update to Sistent ${{ github.event.release.tag_name }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
bump-meshery-extensions:
runs-on: ubuntu-latest
steps:
- name: Checkout Meshery Extensions code
uses: actions/checkout@v4
with:
repository: layer5labs/meshery-extensions
fetch-depth: 1
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
working-directory: meshmap
run: npm install @layer5/sistent@latest
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
commit-message: Bump sistent ${{ github.event.release.tag_name }} dependencies
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: bump-sistent-bot
delete-branch: true
title: '[Chore]: Bump ${{ github.event.release.name }}'
add-paths: |
meshmap/package.json
meshmap/package-lock.json
body: |
Update to Sistent ${{ github.event.release.tag_name }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
bump-meshery-cloud:
runs-on: ubuntu-latest
steps:
- name: Checkout Meshery Extensions code
uses: actions/checkout@v4
with:
repository: layer5io/meshery-cloud
fetch-depth: 1
token: ${{ secrets.RELEASEDRAFTER_PAT }}
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: '**/package-lock.json'
- name: Make changes to pull request
working-directory: ui
run: npm install @layer5/sistent@latest
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.RELEASEDRAFTER_PAT }}
commit-message: Bump sistent ${{ github.event.release.tag_name }} dependencies
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: bump-sistent-bot
delete-branch: true
title: '[Chore]: Bump ${{ github.event.release.name }}'
add-paths: |
ui/package.json
ui/package-lock.json
body: |
Update to Sistent ${{ github.event.release.tag_name }}
_This pull request has been auto-generated by [l5io](http://github.com/l5io)_
assignees: l5io
draft: false
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
- run: |
npm install

publish-gpr:
needs: build
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/storybook-deploy.yml

This file was deleted.

Loading

0 comments on commit 6b925d6

Please sign in to comment.