Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug Report
about: Create a report to help improve burpference
title: '[BUG] '
labels: bug
assignees: ''
---

### Bug Description
A clear and concise description of the bug.

### Steps to Reproduce
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

### Expected Behavior
A clear description of what you expected to happen.

### Screenshots
If applicable, add screenshots to help explain your problem.

### Environment
- OS: [e.g. Windows 10, macOS 12.0]
- Browser: [e.g. Chrome 96]
- Extension Version: [e.g. 1.0.0]
- URL being tested: [if applicable]

### Additional Context
Add any other context about the problem here.

### Console Output
```
Paste any relevant console output here
```
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Feature Request
about: Suggest an idea for burpference
title: '[FEATURE] '
labels: enhancement
assignees: ''
---

### Problem Description
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

### Proposed Solution
A clear and concise description of what you want to happen.

### Alternative Solutions
A clear and concise description of any alternative solutions or features you've considered.

### Use Case
Describe how this feature would be used and who would use it.

### Additional Context
Add any other context, screenshots, or mock-ups about the feature request here.

### Implementation Ideas
If you have any thoughts on how this could be implemented, share them here.
8 changes: 4 additions & 4 deletions .github/workflows/rigging_pr_description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Get Diff
id: diff
run: |
git fetch origin ${{ github.base_ref }}
MERGE_BASE=$(git merge-base HEAD origin/${{ github.base_ref }})
git fetch origin "${{ github.base_ref }}"
MERGE_BASE=$(git merge-base HEAD "origin/${{ github.base_ref }}")
# Encode the diff as base64 to preserve all characters
DIFF=$(git diff $MERGE_BASE..HEAD | base64 -w 0)
echo "diff=$DIFF" >> $GITHUB_OUTPUT
DIFF=$(git diff "$MERGE_BASE"..HEAD | base64 -w 0)
echo "diff=$DIFF" >> "$GITHUB_OUTPUT"
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b #v5.0.3
with:
python-version: "3.11"
Expand Down
25 changes: 2 additions & 23 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,6 @@ repos:
- id: actionlint
name: Check Github Actions

# Secrets detection
- repo: https://github.com/Yelp/detect-secrets
rev: 01886c8a910c64595c47f186ca1ffc0b77fa5458 #v1.5.0
hooks:
- id: detect-secrets
name: Detect secrets
args:
- '--baseline'
- '.secrets.baseline'
- '--exclude-files'
- 'components/api/migrations/*'
- '--exclude-files'
- 'components/api/app/assets/*'
- '--exclude-files'
- '\.sops\.yaml$'
- '--exclude-files'
- 'secrets\.enc\.yaml$'
- '--exclude-files'
- 'components/strikes/*'

# Python linting
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
Expand All @@ -54,8 +34,7 @@ repos:
hooks:
- id: bandit
name: Code security checks
args: ["-c", "pyproject.toml"]
additional_dependencies: ["bandit[toml]"]
args: ["-r", "--level", "2", "./"]

- repo: local
hooks:
Expand All @@ -64,4 +43,4 @@ repos:
name: Check GitHub Actions for Pinned Dependencies
entry: python .scripts/check_pinned_hash_dependencies.py
language: python
files: \.github/.*\.yml$
files: \.github/.*\.yml$
1 change: 0 additions & 1 deletion configs/ollama_llama3.2_generate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"api_type": "ollama",
"format": "json",
"api_type": "ollama",
"stream": false,
"host": "http://localhost:11434/api/generate",
"model": "llama3.2"
Expand Down
Loading