Replies: 4 comments 2 replies
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
This is a great feature request and definitely gets my upvote! Currently, the progress bar you see for GitHub Pages is a special, hardcoded UI component that GitHub built exclusively for their native Pages deployment lifecycle. As of right now, there is no public workflow syntax or toolkit command to trigger that specific visual progress widget for standard or custom jobs. The Current Workaround: You can have your steps append a markdown-based progress bar to the summary as they complete. For example: - name: Step 1 Complete
run: echo "🚀 Build Stage: [██████░░░░░░░░░] 40%" >> $GITHUB_STEP_SUMMARYIt doesn't update dynamically on the main workflow graph, but it does give your team a clean, visual snapshot of exactly where the pipeline is at when they check the summary page. Being able to define progress: 50% natively in a step definition would be a massive UX win for complex CI pipelines, though! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Product Feedback
What GitHub Actions topic or product is this about?
Metrics & Insights
Discussion Details
it'd be nice if non github-pages jobs could also be configured to display the progress bar, either automatically based on the amount of jobs in the workflow or manually by defining percentages per step

Beta Was this translation helpful? Give feedback.
All reactions