Fix the branch_regex for Fedora EPEL so that it also matches on el6
This was reported by a former maintainer of the freerdp rpm where the Fedora EPEL CC list was not being updated because the only EPEL branch still active in PDC was the el6 branch. Thus the script was never matching Fedora EPEL as being still active and as a result it was not updating it. By adjusting the regex, we solve this issue. Fixes https://pagure.io/fedora-infrastructure/issue/9122 Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
parent
3f1611f6c3
commit
e9cc33ff09
1 changed files with 2 additions and 1 deletions
|
@ -21,7 +21,8 @@ ignorable_accounts = ["packagerbot", "zuul"]
|
|||
namespace = "modules"
|
||||
versions = []
|
||||
[products."Fedora EPEL"]
|
||||
branch_regex = '^epel\d+$'
|
||||
# To simplify to '^epel\d+$' once EL6 is EOL.
|
||||
branch_regex = '^e(pe)?l\d+$'
|
||||
versions = ["epel8", "epel7", "el6"]
|
||||
|
||||
[pdc_types]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue