Skip to content

Commit ea320da

Browse files
committed
formatting
1 parent 1dbb6ae commit ea320da

2 files changed

Lines changed: 26 additions & 8 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,33 @@ body:
1414
id: version
1515
attributes:
1616
label: BioNeMo Framework Version
17-
description: What version or commit hash of the framework are you using? Please, specify a commit hash or version tag. Do not use 'latest', 'ToT' or 'nightly' as a reference.
18-
* To get the commit hash, run `git rev-parse HEAD` for your local repository or `git rev-parse origin/main` for the remote main branch.
19-
* To get the commit hash from the docker image, run `docker image inspect nvcr.io/nvidia/clara/bionemo-framework:nightly --format '{{ index .Config.Labels "com.nvidia.bionemo.git_sha" }}'`.
20-
* The version tag is the part that comes after the colon (:) in the docker image names available at [NGC](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara/containers/bionemo-framework/tags). It corresponds to the version of the framework that are tagged by `git ls-remote --tags origin`.
17+
description: |
18+
**What version or commit hash of the framework are you using?**
2119
22-
placeholder: commit-hash or version tag, ie v1.2.3.
20+
Please specify a **commit hash** or **version tag**.
21+
⚠️ **Do not use** `latest`, `ToT`, or `nightly` as a reference.
22+
23+
**How to find the commit hash or version tag:**
24+
- **Local repository commit hash:**
25+
```bash
26+
git rev-parse HEAD
27+
```
28+
- **Remote main branch commit hash:**
29+
```bash
30+
git rev-parse origin/main
31+
```
32+
- **Commit hash from a Docker image (replace `<tag>` with the version you use):**
33+
```bash
34+
docker image inspect nvcr.io/nvidia/clara/bionemo-framework:<tag> \
35+
--format '{{ index .Config.Labels "com.nvidia.bionemo.git_sha" }}'
36+
```
37+
- **Version tag:** The part that comes after the colon (`:`) in the image name
38+
(see [NGC tags](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara/containers/bionemo-framework/tags)).
39+
You can list all remote tags with:
40+
```bash
41+
git ls-remote --tags origin
42+
```
43+
placeholder: commit hash or version tag, e.g. `v1.2.3`
2344
validations:
2445
required: true
2546

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ body:
1919
attributes:
2020
label: BioNeMo Framework Version
2121
description: What version or commit hash of the framework are you using? Please, specify a commit hash or version tag. Do not use 'latest', 'ToT' or 'nightly' as a reference.
22-
* To get the commit hash, run `git rev-parse HEAD` for your local repository or `git rev-parse origin/main` for the remote main branch.
23-
* To get the commit hash from the docker image, run `docker image inspect nvcr.io/nvidia/clara/bionemo-framework:nightly --format '{{ index .Config.Labels "com.nvidia.bionemo.git_sha" }}'`.
24-
* The version tag is the part that comes after the colon (:) in the docker image names available at [NGC](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara/containers/bionemo-framework/tags). It corresponds to the version of the framework that are tagged by `git ls-remote --tags origin`.
2522

2623
placeholder: commit-hash or version tag, ie v1.2.3.
2724
validations:

0 commit comments

Comments
 (0)