-
Notifications
You must be signed in to change notification settings - Fork 51
[MAINT]: Add CODEOWNERS, issue/PR templates, and update README #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| * @microsoft/ai-red-team-dev |
This file contains hidden or 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,88 @@ | ||
| name: Bug Report | ||
| description: Report a bug or unexpected behavior | ||
| labels: ["bug"] | ||
| body: | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: A clear description of the bug. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: repro | ||
| attributes: | ||
| label: Steps to reproduce | ||
| description: Minimal steps to reproduce the behavior. | ||
| placeholder: | | ||
| 1. Install RAMPART v... | ||
| 2. Create a test file with... | ||
| 3. Run `pytest ...` | ||
| 4. Observe... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected behavior | ||
| description: What you expected to happen. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: actual | ||
| attributes: | ||
| label: Actual behavior | ||
| description: What actually happened. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| id: python-version | ||
| attributes: | ||
| label: Python version | ||
| options: | ||
| - "3.11" | ||
| - "3.12" | ||
| - "3.13" | ||
| - "Other" | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: dropdown | ||
| id: os | ||
| attributes: | ||
| label: Operating system | ||
| options: | ||
| - Linux | ||
| - macOS | ||
| - Windows | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: input | ||
| id: rampart-version | ||
| attributes: | ||
| label: RAMPART version | ||
| placeholder: "0.1.0" | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: code | ||
| attributes: | ||
| label: Code to reproduce | ||
| description: Minimal code snippet that reproduces the issue. | ||
| render: python | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional context | ||
| description: Logs, screenshots, stack traces, or any other relevant information. | ||
| validations: | ||
| required: false | ||
This file contains hidden or 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,5 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Security vulnerabilities | ||
| url: https://github.com/microsoft/RAMPART/blob/main/.github/SECURITY.md | ||
| about: Do not report security vulnerabilities through public GitHub issues. See SECURITY.md for reporting guidance. |
This file contains hidden or 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,19 @@ | ||
| name: Documentation Improvement | ||
| description: Report confusing or missing documentation | ||
| labels: ["documentation"] | ||
| body: | ||
| - type: textarea | ||
| id: issue | ||
| attributes: | ||
| label: What is confusing or missing? | ||
| description: Tell us what's unclear, incorrect, or absent in the docs. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: suggestion | ||
| attributes: | ||
| label: Suggested fix | ||
| description: How could the documentation be improved? | ||
| validations: | ||
| required: false |
This file contains hidden or 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: Feature Request | ||
| description: Suggest a new feature or improvement | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: Summary | ||
| description: Brief description of the feature. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: motivation | ||
| attributes: | ||
| label: Motivation | ||
| description: Why is this feature needed? What problem does it solve? | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: solution | ||
| attributes: | ||
| label: Proposed solution | ||
| description: Describe the desired outcome. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: alternatives | ||
| attributes: | ||
| label: Alternatives considered | ||
| description: Any alternative approaches you've thought about. | ||
| validations: | ||
| required: false | ||
|
|
||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional context | ||
| description: Any other relevant information, references, or examples. | ||
| validations: | ||
| required: false |
This file contains hidden or 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,11 @@ | ||
| name: Other | ||
| description: General issue that doesn't fit other categories | ||
| labels: ["triage"] | ||
| body: | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: Describe your issue, question, or suggestion. | ||
| validations: | ||
| required: true |
This file contains hidden or 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,20 @@ | ||
| <!-- This repository loosely follows the "Conventional Commits" specification for commit messages. See https://www.conventionalcommits.org/ for more information. --> | ||
| <!-- Squash-merge commit messages must match: ^\[(FEAT|FIX|REFACTOR|STYLE|TEST|DOCS|CI|MAINT|META|REVERT)\]( \[BREAKING\])?:\s.+\(#\d+\) --> | ||
| <!-- GitHub appends (#N) automatically during squash-merge; just use the [TAG]: description format for your PR title. --> | ||
| <!-- If your PR is not yet ready for review, please mark it as [DRAFT]. --> | ||
|
|
||
| ## Description | ||
|
|
||
| <!-- What does this PR do? Provide a brief summary of the changes. --> | ||
| <!-- Mention any relevant issues or pull requests with #<issue_number> --> | ||
| <!-- Tag any relevant reviewers or teams using @<username> --> | ||
|
|
||
|
|
||
| ## Breaking changes | ||
| <!-- If none, write "None". If breaking, describe the impact and migration path. --> | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] `pre-commit run --all-files` passes | ||
| - [ ] Tests added or updated for changes <!-- Please describe what tests were added or updated --> | ||
| - [ ] Documentation updated |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.