Replies: 2 comments
-
|
💬 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.
-
|
hey Nilay 👋 . in the meantime,for anyone reading this who wants it now,,, its a one-time opt-in per workflow rather than something you have to remember to add manually each run : concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: trueadd that near the top of your workflow yaml(same level as on the actual feature request ,,, id guess the reason its opt-in rather than default is that some teams genuinely want every commit built(e.g. for audit trails ,bisecting regressions ,or release branches where every commit needs a clean build record),,so making it default could break those workflows silently. a middle ground might be defaulting it on for non-protected branches only (feature branches ,PRs)while leaving protected / release branches as build-everything by default still,,,,,,,worth the feedback. even an opt-in-by-default-for-new-repos toggle in org settings would help adoption a lot 💙💙 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Product Feedback
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
Dear GitHub devs,
I think all CI/CD pipelines can have previous commit builds forfeited if a newer commit is pushed. There is an option to do so, but it is not default. Which means most part of the world is still occupying servers for old commits. Default behaviour of forfeiting hopefully saves a lot of compute & for teams which really need old commit build results can enable some option.
Beta Was this translation helpful? Give feedback.
All reactions