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

Updated bug template #157

Merged
merged 4 commits into from
Jul 22, 2022
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
50 changes: 34 additions & 16 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: 🐞 Bug
description: File a bug/issue
title: "Title"
labels: ["bug", "triage"]
body:
- type: checkboxes
Expand All @@ -10,29 +9,36 @@ body:
options:
- label: I have searched the existing issues
required: true

- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
label: Behavior
description: A concise description of what you're experiencing, and what you expected to happen.
placeholder: |
### Current behavior
TODO

### Expected behavior
TODO
validations:
required: true

- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
label: Config
description: A `whim.config.csx` that can be used to reproduce the issue.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
#r "WHIM_PATH\whim.dll"

void DoConfig(IConfigContext configContext)
{
configContext.WorkspaceManager.Add(CreateWorkspace(configContext, "1"));
// ...
}
render: csharp
validations:
required: true

- type: textarea
attributes:
label: Environment
Expand All @@ -45,9 +51,21 @@ body:
- Windows:
- Architecture:
- Whim:
render: markdown
validations:
required: true

- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true

- type: textarea
attributes:
label: Anything else?
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,17 @@ name: "CodeQL"
on:
push:
branches: [ "main" ]
paths-ignore:
- ".github/ISSUE_TEMPLATE/*"
- ".github/workflows/pull_request_labels.yml"
- ".github/pull_request_template.md"
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
paths-ignore:
- ".github/ISSUE_TEMPLATE/*"
- ".github/workflows/pull_request_labels.yml"
- ".github/pull_request_template.md"
schedule:
- cron: '41 19 * * 6'

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ name: commit
on:
push:
branches: [main]
paths-ignore:
- ".github/ISSUE_TEMPLATE/*"
- ".github/workflows/pull_request_labels.yml"
- ".github/pull_request_template.md"
pull_request:
branches: [main]
paths-ignore:
- ".github/ISSUE_TEMPLATE/*"
- ".github/workflows/pull_request_labels.yml"
- ".github/pull_request_template.md"

jobs:
commit:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- release/v*
tags:
- v*
paths-ignore:
- ".github/ISSUE_TEMPLATE/*"
- ".github/workflows/pull_request_labels.yml"
- ".github/pull_request_template.md"

jobs:
create-release:
Expand Down