google / mono_repo.dart

Allows easy management of repositories with multiple Dart packages
https://pub.dev/packages/mono_repo
BSD 3-Clause "New" or "Revised" License
159 stars 32 forks source link

Add `concurrency` option for Github actions #447

Open elliette opened 1 year ago

elliette commented 1 year ago

Along with on, env, etc, Github actions now has the keyword concurrency which allows you to specify concurrency at the workflow level. This lets you cancel any previous workflows if there is a newer one.

It would be great if mono_repo would support concurrency. If you try to add it to your mono_repo.yaml, you see:

Unrecognized keys: [concurrency]; supported keys: [env, on, on_completion, dependabot, cron, stages, workflows]
kevmoo commented 1 year ago

PRs welcome!