This repository has been archived by the owner on Aug 6, 2021. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This replaces the v0 of batching updates from thepwagner/action-update-go#53 .
That was a cool experiment, but I'd like to be able to attach configurations to each cluster of updates instead of just grouping updates together.
Aside from the name change,
batches
were exclusively path prefixes while groups support regular expressions.The first usable bit of configuration is
range
, which can be used to filter versions allowed. There's an accepted bias towards semver: ranges are defined using>= v1.2.3
syntax.The range implementation is functional but super inefficient.
There's a placeholder for
frequency
, which is what I'm really after.Being Actions means I need the
schedule
to trigger every day, for frequency of security updates. But there are some pages that I don't want a daily PR for (aws-sdk-go
I'm looking at you).