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

GitHub Project Automation and Infra Updates #1168

Merged
17 changes: 14 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ body:
attributes:
label: Version
description: What version of Morpheus are you running?
placeholder: "example: 22.09"
placeholder: "example: 23.11"
validations:
required: true

Expand All @@ -42,6 +42,7 @@ body:
- Docker
- Conda
- Source
- Kubernetes

- type: textarea
id: description
Expand All @@ -64,14 +65,24 @@ body:
attributes:
label: Relevant log output
description: Please paste relevant error and log output here
render: shell
value: |
<details><summary>Click here to see error details</summary><pre>

[Paste the error here, it will be hidden by default]

</pre></details>

- type: textarea
id: env-printout
attributes:
label: Full env printout
description: Please run and paste the output of the `./external/utilities/scripts/print_env.sh` script here, to gather any other relevant environment details
render: shell
value: |
<details><summary>Click here to see environment details</summary><pre>

[Paste the results of print_env.sh here, it will be hidden by default]

</pre></details>

- type: textarea
id: misc
Expand Down
7 changes: 0 additions & 7 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,6 @@ body:
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Describe any alternatives you have considered
description: List any other libraries, or approaches you have looked at or tried.
placeholder: I have looked at library xyz and qrs, but they do not offer GPU accleration

- type: textarea
id: misc
attributes:
Expand Down
13 changes: 7 additions & 6 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## Description
<!-- Provide a standalone description of changes in this PR. -->
<!-- Reference any issues closed by this PR with "closes #1234". -->
<!-- Note: The pull request title will be included in the CHANGELOG. -->
<!-- Provide a standalone description of changes in this PR. -->
<!-- Reference any issues closed by this PR with "closes #1234". All PRs should have an issue they close-->
Closes

## Checklist
- [ ] I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- [ ] New or existing tests cover these changes.
- [ ] The documentation is up to date with these changes.
## By Submitting this PR I confirm:
- I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- When the PR is ready for review, new or existing tests cover these changes.
- When the PR is ready for review, the documentation is up to date with these changes.
2 changes: 1 addition & 1 deletion .github/workflows/label-external-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: add-triage-label
run: |
issue_url=${{ github.event.issue.html_url }}
gh issue edit ${issue_url} --add-label "Needs Triage"
gh issue edit ${issue_url} --add-label "Needs Triage,external"

- name: add-comment-to-issue
run: |
Expand Down
Loading