-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from dipjyotimetia/feature/api_analyser
Feature/api analyser
- Loading branch information
Showing
13 changed files
with
403 additions
and
32 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: 🐛 Bug Report | ||
description: something isn't working as expected 🤔. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before opening a bug report, please search for the behaviour in the existing issues. | ||
--- | ||
Thank you for taking the time to file a bug report. To address this bug as fast as possible, we need some information. | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating system | ||
description: "Which operating system do you use? Please provide the version as well." | ||
placeholder: "macOS Big Sur 11.5.2" | ||
validations: | ||
required: true | ||
- type: input | ||
id: golang | ||
attributes: | ||
label: go Version | ||
description: "Please provide the go version." | ||
placeholder: "GO 1.22" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: location | ||
attributes: | ||
label: Project Location | ||
description: Where is the project located? | ||
options: | ||
- Local | ||
- Remote | ||
- Somewhere else (please specify in the description!) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug description | ||
description: What happened? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Which steps do we need to take to reproduce this error? | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: If applicable, provide relevant log output. No need for backticks here. | ||
render: shell |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: 🚀 Feature Request | ||
description: I have a suggestion (and may want to implement it 🙂)! | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please fill out the sections below to help everyone identify and fix the bug | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe your issue | ||
placeholder: When I click here this happens | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: checks | ||
attributes: | ||
label: Extra fields | ||
options: | ||
- label: I have used the search function to check if an issue already exists | ||
required: true | ||
- label: I'd like to work on this issue | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting this issue! We will get back to you as soon as possible. |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Description | ||
|
||
Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
Fixes # (issue) | ||
|
||
## Type of change | ||
|
||
Please delete options that are not relevant. | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
## Checklist: | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I have added new tests required for this feature. | ||
- [ ] I have made corresponding changes to the documentation, if required. | ||
- [ ] My changes generate no new warnings |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '✅ Tests' | ||
label: 'test' | ||
- title: '⚡ Performance' | ||
label: 'performance' | ||
- title: '📝 Documentation' | ||
label: 'docs' | ||
- title: '🔐 Security' | ||
label: 'security' | ||
- title: '🧰 Maintenance' | ||
label: | ||
- 'cicd' | ||
- 'tech' | ||
- title: '🤖 Dependencies' | ||
label: 'dependencies' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'patch' | ||
default: patch | ||
template: | | ||
## Changes | ||
$CHANGES |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
update_release_draft: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: release-drafter/release-drafter@v6 | ||
with: | ||
config-name: config.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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.