-
Notifications
You must be signed in to change notification settings - Fork 1
feat: expand item types and improve API response handling #25
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
Changes from 13 commits
eb738b2
945e9d3
24ec5dd
8597763
db7a5f4
5b6d0ae
d1b77aa
b19bebc
30581cf
fcca09d
8632aa7
c235c6d
292e23a
8ed343e
3e934dd
0aa50fa
37d3779
e057865
15803ba
904b9db
8184607
326d986
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -57,5 +57,5 @@ jobs: | |||||
run: | | ||||||
echo "## 🚀 Release Summary" >> $GITHUB_STEP_SUMMARY | ||||||
echo "Release draft created for version ${{ github.event.inputs.version }}." >> $GITHUB_STEP_SUMMARY | ||||||
echo "Visit the [Releases section](https://github.com/vintasoftware/nextjs-fastapi-template/releases) to review and publish the release." >> $GITHUB_STEP_SUMMARY | ||||||
echo "Visit the [Releases section](https://github.com/https://github.com/telepace/releases) to review and publish the release." >> $GITHUB_STEP_SUMMARY | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the malformed GitHub URL in the release summary. The GitHub URL contains a duplication of "https://github.com/" which will result in a broken link. - echo "Visit the [Releases section](https://github.com/https://github.com/telepace/releases) to review and publish the release." >> $GITHUB_STEP_SUMMARY
+ echo "Visit the [Releases section](https://github.com/telepace/releases) to review and publish the release." >> $GITHUB_STEP_SUMMARY 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||
echo "Once the draft is published, another action will automatically be triggered to publish the packages." >> $GITHUB_STEP_SUMMARY |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enable full history for
git pull --rebase
The workflow’s comments note that a full history (fetch-depth: 0) is required for accurate diffs and successful rebases, but the checkout step isn’t configured accordingly. Without it,
git pull --rebase
may fail due to missing history.Apply this diff at the checkout step (lines 21–23) to set
fetch-depth: 0
:🤖 Prompt for AI Agents