Siad A.’s Post

What do GitHub Actions workflows look like in prod? I'll give you a clue: Branching strategies. One of the benefits of CI/CD is that any code that passes all stages of the development pipeline is automatically pushed to production. To really leverage that benefit however, we implement branching strategies. This is a way of filtering our workflow triggers, only running our them when changes are pushed to specific branches. In this case, it would be the main branch (or whatever branch our production code is on). This allows us to work on new features & bug fixes on separate branches in the background, keeping our application running until our changes are ready, maximising uptime. Have you implemented branching strategies into your work? #devops #git #github #cicd  

  • shape, arrow

I started using the gitflow branching strategy on my project once it got more popular, as it allows for great semantic versioning and control.

To view or add a comment, sign in

Explore content categories