Skip to content

Commit

Permalink
fix(all sdks): template for issues (#125)
Browse files Browse the repository at this point in the history
Correct location of github template for SDKs and improve its format

Close #124
  • Loading branch information
adriantam authored Jun 9, 2023
1 parent 1a9749b commit fa95282
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 15 deletions.
8 changes: 4 additions & 4 deletions config/common/config.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"destinationFilename": ".github/CODEOWNERS",
"templateType": "SupportingFiles"
},
".github/ISSUE_TEMPLATES/bug_report.md.mustache": {
"destinationFilename": ".github/ISSUE_TEMPLATES/bug_report.md",
".github/ISSUE_TEMPLATE/bug_report.md.mustache": {
"destinationFilename": ".github/ISSUE_TEMPLATE/bug_report.md",
"templateType": "SupportingFiles"
},
".github/ISSUE_TEMPLATES/feature_request.md.mustache": {
"destinationFilename": ".github/ISSUE_TEMPLATES/feature_request.md",
".github/ISSUE_TEMPLATE/feature_request.md.mustache": {
"destinationFilename": ".github/ISSUE_TEMPLATE/feature_request.md",
"templateType": "SupportingFiles"
},
"NOTICE.mustache": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,48 @@ By submitting an issue to this repository, you agree to the terms within the [{{

> Provide a clear and concise description of the issue, including what you expected to happen.

### Version of SDK

> v0.2.0

### Version of OpenFGA (if known)

> v1.1.0

### OpenFGA Flags/Custom Configuration Applicable

> environment:
> - OPENFGA_DATASTORE_ENGINE=postgres
> - OPENFGA_DATASTORE_URI=postgres://postgres:password@postgres:5432/postgres?sslmode=disable
> - OPENFGA_TRACE_ENABLED=true
> - OPENFGA_TRACE_SAMPLE_RATIO=1
> - OPENFGA_TRACE_OTLP_ENDPOINT=otel-collector:4317
> - OPENFGA_METRICS_ENABLE_RPC_HISTOGRAMS=true

### Reproduction

> Detail the steps taken to reproduce this error, what was expected, and whether this issue can be reproduced consistently or if it is intermittent.
>
> Where applicable, please include:
> 1. Initialize OpenFgaClient with openfga_sdk.ClientConfiguration parameter api_host=127.0.0.1, credentials method client_credentials
> 2. Invoke method read_authorization_models
> 3. See exception thrown

### Sample Code the Produces Issues

>
> - Code sample to reproduce the issue
> - Log files (redact/remove sensitive information)
> - Application settings (redact/remove sensitive information)
> - Screenshots
> ```
> <code snippet>
> ```

### Backtrace (if applicable)

> ```
> <backtrace>
> ```

### Environment

> Please provide the following:
### Expected behavior
> A clear and concise description of what you expected to happen.

- **Version of this library used:**
- **Version of the platform or framework used, if applicable:**
- **Other relevant versions (language, server software, OS, browser):**
- **Other modules/plugins/libraries that might be involved:**
### Additional context
> Add any other context about the problem here.

0 comments on commit fa95282

Please sign in to comment.