forked from cms-sw/cms-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcms_static.py
More file actions
19 lines (18 loc) · 726 Bytes
/
cms_static.py
File metadata and controls
19 lines (18 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
GH_CMSSW_ORGANIZATION = 'cms-sw'
GH_CMSSW_REPO = 'cmssw'
GH_CMSDIST_REPO = 'cmsdist'
BUILD_REL = '^[Bb]uild[ ]+(CMSSW_[^ ]+)'
NEW_ISSUE_PREFIX = 'A new Issue was created by '
NEW_PR_PREFIX = 'A new Pull Request was created by '
ISSUE_SEEN_MSG = '^A new (Pull Request|Issue) was created by '
VALID_CMSDIST_BRANCHES = "^IB/CMSSW_.+$"
CMSDIST_REPO_NAME = GH_CMSSW_ORGANIZATION+"/"+GH_CMSDIST_REPO
CMSSW_REPO_NAME = GH_CMSSW_ORGANIZATION+"/"+GH_CMSSW_REPO
CMSSW_PULL_REQUEST_COMMANDS = "cms-sw/cmssw#13028"
CMSSW_ISSUE_COMMANDS = "cms-sw/cmssw#13029"
BACKPORT_STR="- Backported from #"
CMSBUILD_GH_USER="cmsbuild"
CMSBOT_IGNORE_MSG = "^<cmsbot></cmsbot>.+"
GITHUB_IGNORE_ISSUES = {
CMSSW_REPO_NAME : [12368],
}