livefront / sealed-enum

A Kotlin annotation processor that makes writing normal enum classes obsolete.
Apache License 2.0
149 stars 7 forks source link

Cancel in progress builds #90

Closed alexvanyo closed 3 years ago

alexvanyo commented 3 years ago

A small GitHub Actions change, as specified here: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency

This is primarily useful to automatically cancel jobs while updating PRs repeatedly in short succession, especially since macOS and Windows builds take quite a bit of time (and the number of parallel jobs is limited).

One note: this could cancel a main job if two PRs were merged right after each other, but that's fine: the checks with the final merge would eventually get run.

github-actions[bot] commented 3 years ago

🧛 Project Code Coverage: 96.13%

Coverage of Modified Files:

File Coverage

Modified Files Not Found In Coverage Report:

ci.yml

Codebase cunningly covered by count Shroud 🧛

Generated by :no_entry_sign: Danger

alexvanyo commented 3 years ago

Thanks @weisers !