You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** You can preview with draft mode before creating the tag. Draft mode will use HEAD if the tag doesn't exist yet.
230
+
217
231
## SaaS Development Updates Feed
218
232
219
233
For generating RSS/Atom feeds and markdown pages showing recent PRs deployed to the SaaS platform (but not yet in self-hosted releases), see [PR-FEED-README.md](./PR-FEED-README.md).
@@ -228,16 +242,26 @@ The feed date range is automatically updated when you create release notes - no
228
242
229
243
## Troubleshooting Release Notes
230
244
231
-
### "Tags for versions X...Y not found"
245
+
### "Tag X.Y.Z not found" Warning or Error
246
+
247
+
**In Draft Mode:**
248
+
- Shows warning: "Tag 5.18.0 not found, using HEAD for preview"
249
+
- Uses HEAD (main branch) to preview PRs
250
+
- This is normal before the tag is created
251
+
252
+
**In Final Mode:**
253
+
- Shows error: "Tag 5.18.0 not found. Create the tag first or use --draft mode."
254
+
- Creates a placeholder file with minimal content
255
+
- Re-run after creating the tag to populate with actual PRs
232
256
233
-
**Cause**: Tag doesn't exist in the repository or uses different naming.
257
+
**Solution:**
258
+
1. Use draft mode to preview: `npm run notes:draft -- --milestone=5.18.0`
259
+
2. Create the tag when ready: `git tag v5.18.0 && git push origin v5.18.0`
260
+
3. Generate final notes: `npm run notes -- --milestone=5.18.0`
234
261
235
-
**Solution**:
236
-
- For `docs` and `ansible-plugin` repos: This is normal (they don't use version tags)
context.docs=awaitgetRepoData({repo: 'docs',owner: 'rundeck'},fromVersion,toVersion,[],useHead);// No label filtering for docs (need all PRs for contributors)
0 commit comments