Skip to content
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

Added Labels Dynamically,added comments explaining what each pattern … #6149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 11 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ body:
- type: textarea
id: exceptedbhv
attributes:
label: "Excepted behavior"
label: "Expected behavior"
#Field ID excepted behaviouy should likely be expected bhv (for "Expected behavior")
description: "A clear and concise description of what you expected to happen."
validations:
required: true
Expand All @@ -43,3 +44,12 @@ body:
description: "Is there anything else we should know about this bug report?"
validations:
required: false
#Added placeholders to guide users
- type: textarea
id: context
attributes:
label: "Additional context"
description: "Is there anything else we should know about this bug report?"
placeholder: "E.g., recent changes in your setup, related logs, etc."
Copy link

@anandfresh anandfresh Jan 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a suggestion to update description text
Do you have any further information on this bug report?

labels: ["bug", "triage-needed"] #added more labels

6 changes: 6 additions & 0 deletions spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,10 @@
<Match>
<Bug pattern="HARD_CODE_KEY" />
</Match>
<!-- Detects hardcoded encryption keys -->
<Match>
<Bug pattern="HARD_CODE_KEY" />
</Match>

</FindBugsFilter>

Loading