Skip to content

Commit

Permalink
Update ignored refs list
Browse files Browse the repository at this point in the history
- Refine HEAD regex
- Exclude all 1.x versions (except 1.3.x for docbook builds)
- Exclude dependabot branches
  • Loading branch information
dregad committed Oct 8, 2020
1 parent 280917a commit 3d59f94
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 6 additions & 5 deletions build/buildrelease-repo.py
Expand Up @@ -15,12 +15,13 @@
build_script_name = 'buildrelease.py'

# List of refs to ignore (regular expressions)
# - HEAD
# - 1.x branches
# - dependabot branches
# - HEAD (generally the same as master)
# - dependabot branches
# - 1.x refs
ignorelist = [
'HEAD',
'-1\.0\.[\w\d]+',
'^origin\/HEAD$',
'-1\.[\d]+\.[\w\d]+',
'^origin\/dependabot\/',
]

# Script options
Expand Down
12 changes: 6 additions & 6 deletions build/docbook-manual-repo.py
Expand Up @@ -16,13 +16,13 @@

# List of refs to ignore (regular expressions)
# - HEAD (generally the same as master)
# - 1.x refs
# - dependabot branches
# - 1.x refs except 1.3.x
ignorelist = [
'HEAD',
'->',
'-1\.0\.[\w\d]+',
'-1\.1\.[\w\d]+'
]
'^origin\/HEAD$',
'-1\.[012]+\.[\w\d]+',
'^origin\/dependabot\/',
]

# Script options
options = "hr:cfda"
Expand Down

0 comments on commit 3d59f94

Please sign in to comment.