GH Actions is doing the same things that Azure doe...
# core
s
GH Actions is doing the same things that Azure does; there are a couple more annoyances we've just found: 1. Subsequent push to a PR do not cancel the workflow build for the previous ones (https://github.community/t/github-actions-cancel-redundant-builds-not-solved/16025/36). This can be in theory solved using GH Actions API to cancel those workflow builds from the new workflow build itself. The additional downside is that it sends a mail everytime (I "think" to every maintainer, just like hitting cancel from the UI). 2. You cannot re-run a single failed job (https://github.community/t/ability-to-rerun-just-a-single-job-in-a-workflow/17234/16), you have to re-run the entire workflow. There's no solution afaik now.