auto-pr icon indicating copy to clipboard operation
auto-pr copied to clipboard

Example how to specify a list of repos

Open jeanCarloMachado opened this issue 3 years ago • 2 comments

Thanks for this great tool!

I wonder how can I specific a deterministic list of repos? Can you provide some more docs in that section? Thank you!

jeanCarloMachado avatar Jun 27 '22 11:06 jeanCarloMachado

I mean I know this is two years old 😆 BUT here's how I did it:

repositories:
- mode: add
  match_name: [ repo1|repo2|repo3 ]

Basically string together exact match grep searches by separating repos with a pipe (|)

shawnoster avatar Nov 08 '24 22:11 shawnoster

alternatively pass a list of exact strings to match:

repositories: # Rules that define what repos to update
  - mode: add
    match_owner: foo
    match_name:
      - bar
      - bazz

tplass-ias avatar Jan 14 '25 19:01 tplass-ias