We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe92ddb commit c17560dCopy full SHA for c17560d
.github/ISSUE_TEMPLATE/release_creation.yml
@@ -61,7 +61,11 @@ body:
61
```bash
62
git tag --sort=-v:refname | head -5
63
```
64
- 2. Identify the most recent version tag and determine type:
+ 2. Check existing GitHub releases to see which tags already have releases:
65
+ ```bash
66
+ gh release list --limit 10
67
+ ```
68
+ 3. Identify the most recent version tag **that does not yet have a GitHub release** and determine type:
69
- **Minor release** (x.Y.0): Must summarize ALL patch version release notes since last minor
70
- **Major release** (X.0.0): Must summarize ALL minor release notes since last major
71
- **Patch release** (x.y.Z): Can be initiated manually, summarize changes since last release notes
0 commit comments