Skip to content

Commit

Permalink
OKTA-448513: update pr templates (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanapellanes-okta authored Dec 17, 2021
1 parent 7bd2b2a commit 1804287
Show file tree
Hide file tree
Showing 7 changed files with 159 additions and 98 deletions.
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

84 changes: 84 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
name: Bug Report
description: Report a bug you encountered with the Okta Xamarin SDK
labels: [ bug ]
body:
- type: textarea
id: problemDescription
attributes:
label: Describe the bug?
description: |
Please be as detailed as possible. This will help us address the bug in a timely manner.
validations:
required: true

- type: textarea
id: expectedBehavior
attributes:
label: What is expected to happen?
validations:
required: true

- type: textarea
id: actualBehavior
attributes:
label: What is the actual behavior?
validations:
required: true

- type: textarea
id: reproductionSteps
attributes:
label: Reproduction Steps?
description: |
Please provide as much detail as possible to help us reproduce the behavior.
If possible please provide a link to a public repository containing a project or solution that reproduces the behavior.
validations:
required: true

- type: textarea
id: additionalInformation
attributes:
label: Additional Information?

- type: textarea
id: dotnetVersion
attributes:
label: Dotnet Information
description: |
```powershell
PS C:\> dotnet --info
# paste output here
```
validations:
required: true

- type: textarea
id: sdkVersion
attributes:
label: SDK Version
description: |
```powershell
# replace the path with the appropriate path to the Okta.Xamarin.dll on your system
PS C:\> [System.Reflection.Assembly]::LoadFrom("C:\Okta.Xamarin.dll").GetName().Version
# paste output here
```
validations:
required: true

- type: textarea
id: osVersion
attributes:
label: OS version
description: |
```console
# On Linux:
$ cat /etc/os-release
# On Mac:
$ uname -a
# On Windows:
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
# paste output here
```
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
contact_links:
- name: Developer Forum
url: https://devforum.okta.com/
about: Get help with building your applicaiton on the Okta Platform.
blank_issues_enabled: false
30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Feature Request
description: Request a new feature for this SDK?
labels: [ enhancement ]
body:
- type: textarea
id: description
attributes:
label: Describe the feature request?
description: |
Please leave a helpful description of the feature request here.
validations:
required: true

- type: textarea
id: resources
attributes:
label: New or Affected Resource(s)
description: |
Please list the new or affected resources
validations:
required: true

- type: textarea
id: documentation
attributes:
label: Provide a documentation link
description: |
Please provide any links to the documentation that is at
https://developer.okta.com/. This will help us with this
feature request.
- type: textarea
id: additional
attributes:
label: Additional Information?
4 changes: 4 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Security Policy

## Report a Vulnerability
At Okta we take the protection of our customers’ data very seriously. If you need to report a vulnerability, please visit https://www.okta.com/vulnerability-reporting-policy/ for more information.
62 changes: 33 additions & 29 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
<!--
Before creating an issue or submitting a PR, please check that your issue is not already fixed in the latest stable version and that a similar issue or PR is not reported already (also check closed issues).
-->

<!--
Please help us process GitHub Issues faster by providing the following information.
Note: If you have a question about your entire application or use case, please post it on the Okta Developer Forum (https://devforum.okta.com) instead. For urgent issues contact support@okta.com. Issues in this repository are reserved for bug reports and feature requests.
Thank you for submitting a pull request! A few things to know first:
- For us to be able to merge your PR, you must first fill out a CLA. Information on our CLA process can be found at https://developer.okta.com/cla
- For faster reviews and merging, please fill out all sections of this template completely
- Your title should be concise and explain what the PR does
- Follow the single responsibility principal with your PR. This PR should adjust a single set of changes. If it is larger than that, please submit multiple PR's
- Please use this template for your PR, so we can understand the purpose. PR's that do not use this template will be closed
-->


## Issue \#
<!-- Reference any existing issue(s) here. -->


## Code
<!-- If possible, commit unit tests separately from the implementation to simplify validation. -->
- [ ] Unit test(s)
- [ ] Implementation


## Current behavior
<!-- Describe what behavior is changing, if any. -->


## Desired behavior
<!-- Describe what the desired behavior is. -->


## Additional Context
<!-- Describe the motivation or the concrete use case. -->

## Summary
<!-- Be concise with your summery, but explain what changed -->

<!-- Include the below line. If there is no issue associated with this PR, please use N/A -->
Fixes #

## Type of PR
<!-- Multiple selections are ok -->
- [ ] Bug Fix (non-breaking fixes to existing functionality)
- [ ] New Feature (non-breaking changes that add new functionality)
- [ ] Documentation update
- [ ] Test Updates
- [ ] Other (Please describe the type)

## Test Information
<!-- Please fill out all information -->
- [ ] My PR required test updates <!-- If you can honestly answer no to this, you may skip this section -->

Dotnet Version:
Os Version:

## Signoff
- [ ] I have submitted a CLA for this PR
- [ ] Each commit message explains what the commit does
- [ ] I have updated documentation to explain what my PR does
- [ ] My code is covered by tests if required
- [ ] I did not edit any automatically generated files

0 comments on commit 1804287

Please sign in to comment.