generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
1,892 additions
and
1,373 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
--- | ||
name: Bug/issue report | ||
name: 🐛 General Bug Report | ||
about: Report an issue to help improve the project. | ||
title: '' | ||
labels: 'kind/bug' | ||
assignees: '' | ||
--- | ||
**Description** | ||
### Current Behavior | ||
<!-- A brief description of the issue. --> | ||
|
||
**Expected Behavior** | ||
### Expected Behavior | ||
<!-- A brief description of what you expected to happen. --> | ||
|
||
**Screenshots** | ||
### Screenshots/Logs | ||
<!-- Add screenshots, if applicable, to help explain your problem. --> | ||
|
||
**Environment:** | ||
- OS: [e.g. Ubuntu] | ||
- Browser: [e.g. Chrome, Safari] | ||
- Version: [e.g. 22] | ||
- Device: [e.g. laptop, iPhone 8] | ||
### Environment | ||
|
||
--- | ||
[Optional] **To Reproduce** | ||
Steps to reproduce the behavior: | ||
- **Host OS:** Mac Linux Windows | ||
- **Platform:** Docker or Kubernetes | ||
- **Meshery Server Version:** stable-v | ||
- **Meshery Client Version:** stable-v | ||
|
||
<!-- Optional | ||
### To Reproduce | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
--> | ||
|
||
[Optional] **Additional Context** | ||
<!-- Add any other context about the problem here. --> | ||
|
||
--- | ||
### Contributor [Guides](https://docs.meshery.io/project/contributing) and [Handbook](https://layer5.io/community/handbook) | ||
- 🛠 [Meshery Build & Release Strategy](https://docs.meshery.io/project/contributing/build-and-release) | ||
- 📚 [Instructions for contributing to documentation](https://github.com/meshery/meshery/blob/master/CONTRIBUTING.md#documentation-contribution-flow) | ||
- Meshery documentation [site](https://docs.meshery.io/) and [source](https://github.com/meshery/meshery/tree/master/docs) | ||
- 🎨 Wireframes and [designs for Meshery UI](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI) in Figma [(open invite)](https://www.figma.com/team_invite/redeem/qJy1c95qirjgWQODApilR9) | ||
- 🙋🏾🙋🏼 Questions: [Discussion Forum](http://discuss.meshery.io) and [Community Slack](https://slack.meshery.io) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,29 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an enhancement to this project. | ||
name: 💡 General Feature Request | ||
about: Suggest an enhancement to Meshery. | ||
title: '' | ||
labels: 'kind/enhancement' | ||
assignees: '' | ||
--- | ||
|
||
**Current Behavior** | ||
### Current Behavior | ||
<!-- A brief description of what the problem is. (e.g. I need to be able to...) --> | ||
|
||
|
||
**Desired Behavior** | ||
### Desired Behavior | ||
<!-- A brief description of the enhancement. --> | ||
|
||
### Implementation | ||
<!-- [Optional] Specifics on the approach to fulfilling the feature request. --> | ||
|
||
--- | ||
**Resources** | ||
<!-- Helpful tools and reference information. --> | ||
### Acceptance Tests | ||
<!-- [Optional] Stipulations of functional behavior or non-functional items that must be in-place in order for the issue to be closed. --> | ||
|
||
**Alternatives / Additional Context** | ||
<!-- A brief description of any alternative solutions or features you've considered or other context that might be helpful. --> | ||
### Mockups | ||
<!-- [Optional] Any visual diagrams of the desired user interface. --> | ||
|
||
--- | ||
### Contributor [Guides](https://docs.meshery.io/project/contributing) and [Handbook](https://layer5.io/community/handbook) | ||
- 🛠 [Meshery Build & Release Strategy](https://docs.meshery.io/project/contributing/build-and-release) | ||
- 📚 [Instructions for contributing to documentation](https://github.com/meshery/meshery/blob/master/CONTRIBUTING.md#documentation-contribution-flow) | ||
- Meshery documentation [site](https://docs.meshery.io/) and [source](https://github.com/meshery/meshery/tree/master/docs) | ||
- 🎨 Wireframes and designs for Meshery UI in [Figma](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI) | ||
- 🙋🏾🙋🏼 Questions: [Discussion Forum](http://discuss.meshery.io) and [Community Slack](https://slack.meshery.io) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
name: Meshkit Error Codes Utility Runner | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
- "master" | ||
paths: | ||
- '**.go' | ||
- "**.go" | ||
|
||
jobs: | ||
Update-error-codes: | ||
name: Error codes utility | ||
if: github.repository == 'layer5io/meshkit' | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'meshery/meshkit' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
# token here with write access to meshkit repo | ||
# token here with write access to meshkit repo | ||
with: | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
ref: 'master' | ||
ref: "master" | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@master | ||
with: | ||
go-version: '1.23' | ||
go-version: "1.23" | ||
|
||
- name: Run utility | ||
run: | | ||
|
@@ -37,19 +38,19 @@ jobs: | |
commit_user_name: l5io | ||
commit_user_email: [email protected] | ||
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | ||
commit_options: '--signoff' | ||
commit_options: "--signoff" | ||
commit_message: "run error codes utility" | ||
file_pattern: helpers/ **.go | ||
|
||
# to push changes to meshery docs | ||
- name: Checkout meshery | ||
uses: actions/checkout@master | ||
with: | ||
repository: 'meshery/meshery' | ||
repository: "meshery/meshery" | ||
# token with write access to meshery repository | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
path: 'meshery' | ||
ref: 'master' | ||
path: "meshery" | ||
ref: "master" | ||
|
||
- name: Update and push docs | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.