Skip to content

Commit

Permalink
Merge branch 'sherlock-project:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
b34c0n5 committed May 31, 2024
2 parents 54597f3 + 945a364 commit eafe1e2
Show file tree
Hide file tree
Showing 35 changed files with 580 additions and 1,207 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ tests/
*.txt
!/requirements.txt
venv/

devel/
11 changes: 11 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### REPOSITORY
/.github/CODEOWNERS @sdushantha
/LICENSE @sdushantha

### PACKAGING
# Changes made to these items without code owner approval may negatively
# impact packaging pipelines. Code owners may need time to verify or adapt.
/pyproject.toml @ppfeister @sdushantha
/setup.cfg @ppfeister @sdushantha
/setup.py @ppfeister
/*.spec @ppfeister
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

57 changes: 57 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Bug Report
description: File a bug report
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: description
attributes:
label: Description
description: Describe the bug you are experiencing
placeholder: Something happend when I did something
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
description: Write a step by step list that will allow us to reproduce this bug
placeholder: |
1. Do something
2. Then do something else
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: Explain how you expect Sherlock to behave
placeholder: I expect Sherlock to behave like this when that is done
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
description: Explain how Sherlock is acutally behaving
placeholder: Sherlock should be behaving like this when that is done
validations:
required: true
- type: textarea
id: additional-info
attributes:
label: Additional information
description: If you have some additional information, please write it here
validations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/sherlock-project/sherlock/blob/master/docs/CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's Code of Conduct
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/false-negative.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: False Negative
description: Report a site that is returning false negative results
labels: ["false negative"]
body:
- type: input
id: site-name
attributes:
label: Site name
description: What site is returning false negatives?
placeholder: Reddit
validations:
required: True
- type: textarea
id: additional-info
attributes:
label: Additional info
description: If you know why the site is returning false negatives, please explain
placeholder: Reddit is returning false negatives because...
validations:
required: false
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/false-positive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Flase Positive
description: Report a site that is returning false positive results
labels: ["false positive"]
body:
- type: input
id: site-name
attributes:
label: Site name
description: What site is returning false positives?
placeholder: Reddit
validations:
required: True
- type: textarea
id: additional-info
attributes:
label: Additional info
description: If you know why the site is returning false positives, please explain
placeholder: Reddit is returning false positives because...
validations:
required: false
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/feature-request.md

This file was deleted.

12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Feature Request
description: Request a feature
labels: ["enhancement"]
body:
- type: textarea
id: description
attributes:
label: Description
description: Describe the feature you are requesting
placeholder: I'd like Sherlock to be able to do xyz
validations:
required: true
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/question.md

This file was deleted.

34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/reporting-false-negative.md

This file was deleted.

34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/reporting-false-positive.md

This file was deleted.

20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/site-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Site Support
description: Request a site Sherlock should support
labels: ["site support request"]
body:
- type: input
id: site-name
attributes:
label: Site name
description: What site should Sherlock support?
placeholder: Reddit
validations:
required: True
- type: textarea
id: additional-info
attributes:
label: Additional info
description: If you have suggestions on how Sherlock should detect for usernames, please explain below
placeholder: Sherlock can detect if a username exists on Reddit by checking for...
validations:
required: false
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/site-support-request.md

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/update-site-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
python-version: '3.x'

# Execute the site_list.py Python script
- name: Execute site_list.py
run: python site_list.py
- name: Execute site-list.py
run: python devel/site-list.py

# Commit any changes made by the script
- name: Commit files
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ __pycache__/
# Pip
src/

# Pip / PyProject Devel & Installation
*.egg-info/

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb
Expand Down
Loading

0 comments on commit eafe1e2

Please sign in to comment.