Skip to content

Commit

Permalink
[github] issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
shish committed Feb 7, 2025
1 parent 43cdbcc commit 9b253c3
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/incorrect_function.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Broken Function
description: If Safe is generating a wrapper for a PHP function, but the wrapper doesn't work
title:
labels: ["broken function"]
body:
- type: input
id: function
attributes:
label: Function URL
description: Link to the function in the PHP documentation
placeholder: https://www.php.net/bzopen
- type: dropdown
id: php_version
attributes:
label: PHP Version
multiple: true
options:
- 8.4
- 8.3
- 8.2
- 8.1
- Other
default: 0
- type: dropdown
id: safe_version
attributes:
label: Safe Version
options:
- 3.X
- 2.X
- dev-master
- Other
default: 0
- type: markdown
id: description
attributes:
label: Problem
description: What is the code doing now? What should it do instead?
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/missing_function.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Missing Function
description: If there's a function in the PHP Standard Library which you believe should have a Safe wrapper
title:
labels: ["missing function"]
body:
- type: input
id: function
attributes:
label: Function URL
description: Link to the function in the PHP documentation
placeholder: https://www.php.net/bzopen
- type: dropdown
id: php_version
attributes:
label: PHP Version
multiple: true
options:
- 8.4
- 8.3
- 8.2
- 8.1
- Other
default: 0
- type: dropdown
id: safe_version
attributes:
label: Safe Version
options:
- 3.X
- 2.X
- dev-master
- Other
default: 0
- type: markdown
id: extra
attributes:
label: Extra Info
description: Any additional information which might be relevant

0 comments on commit 9b253c3

Please sign in to comment.