mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04:00
CI/GitHub: Add issue form for SQL fixes (#26651)
This commit is contained in:
2
.github/ISSUE_TEMPLATE/issue.yml
vendored
2
.github/ISSUE_TEMPLATE/issue.yml
vendored
@@ -1,5 +1,5 @@
|
||||
name: Generic issue
|
||||
description: Report an issue, a suggestion, SQL only fix.
|
||||
description: Report an issue or a suggestion.
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
|
||||
57
.github/ISSUE_TEMPLATE/sql_fix.yml
vendored
Normal file
57
.github/ISSUE_TEMPLATE/sql_fix.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
name: SQL fix
|
||||
description: Suggest a SQL only fix.
|
||||
labels: [Comp-Database, Feedback-PatchFix]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for taking the time to fill out this form! Please make sure to fill all fields, including the Title above.
|
||||
For SQL fixes:
|
||||
- search for existing issues, if a bug report exist for the issue you are trying to fix and it's opened post there.
|
||||
- don't modify WDB fields without supply one sniff of those fields (censure guids, character names, anything blizzard can use to identify source)
|
||||
- don't use pull requests for sql only fixes, unless it's to fix one existing unable to apply file.
|
||||
- don't hardcode guids.
|
||||
- don't DELETE + INSERT to update only few fields of one row.
|
||||
- don't use database names.
|
||||
- don't put ' around numbers.
|
||||
- don't put ( ) if they aren't needed.
|
||||
- use only 1 DELETE + INSERT when we add multiple items to one table, unless you are scripting multiple creatures.
|
||||
- start fix by -- in case some previous sql misses proper ending.
|
||||
- DELETE by guid AND entry to be sure we don't delete existing spawns.
|
||||
|
||||
The wiki page https://github.com/TrinityCore/TrinityCore/wiki/SQL-Fix includes additional details about how to fill this form and an example of a SQL fix.
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Description
|
||||
description: |
|
||||
Description of what is getting fixed, including how to reproduce the issue if any.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: fix
|
||||
attributes:
|
||||
label: SQL fix
|
||||
description: This field will be formatted automatically as SQL code block, no need to include \`\`\`sql
|
||||
placeholder: |
|
||||
--
|
||||
render: sql
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: branch
|
||||
attributes:
|
||||
label: Branch
|
||||
options:
|
||||
- 3.3.5
|
||||
- master
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: commit
|
||||
attributes:
|
||||
label: TC rev. hash/commit
|
||||
description: |
|
||||
Copy the result of server debug command (if you need to run it from client get prat addon)
|
||||
validations:
|
||||
required: true
|
||||
Reference in New Issue
Block a user