Merge "Enable tripleo core members to change WIP flag"

This commit is contained in:
Zuul 2021-01-06 16:55:21 +00:00 committed by Gerrit Code Review
commit d1db82ad2b
10 changed files with 12 additions and 2 deletions

View File

@ -3,6 +3,7 @@ abandon = group tripleo-ansible-core
label-Code-Review = -2..+2 group tripleo-ansible-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-ansible-core
toggleWipState = group tripleo-ansible-core
[receive]
requireChangeId = true

View File

@ -3,6 +3,7 @@ abandon = group tripleo-ci-shared-core
label-Code-Review = -2..+2 group tripleo-ci-shared-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-ci-shared-core
toggleWipState = group tripleo-ci-shared-core
[receive]
requireChangeId = true

View File

@ -4,6 +4,7 @@ label-Code-Review = -2..+2 group tripleo-ci-core
label-Review-Priority = -1..+2 group tripleo-ci-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-ci-core
toggleWipState = group tripleo-ci-core
[label "Review-Priority"]
copyAllScoresIfNoCodeChange = true

View File

@ -3,6 +3,7 @@ abandon = group tripleo-ha-utils-core
label-Code-Review = -2..+2 group tripleo-ha-utils-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-ha-utils-core
toggleWipState = group tripleo-ha-utils-core
[receive]
requireChangeId = true

View File

@ -3,6 +3,7 @@ abandon = group tripleo-quickstart-core
label-Code-Review = -2..+2 group tripleo-quickstart-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-quickstart-core
toggleWipState = group tripleo-quickstart-core
[receive]
requireChangeId = true

View File

@ -2,6 +2,7 @@
abandon = group tripleo-core
label-Code-Review = -2..+2 group tripleo-core
label-Workflow = -1..+1 group tripleo-core
toggleWipState = group tripleo-core
[receive]
requireChangeId = true

View File

@ -3,6 +3,7 @@ abandon = group tripleo-upgrade-core
label-Code-Review = -2..+2 group tripleo-upgrade-core
label-Verified = -1..+1 group tripleo-ci
label-Workflow = -1..+1 group tripleo-upgrade-core
toggleWipState = group tripleo-upgrade-core
[receive]
requireChangeId = true

View File

@ -3,7 +3,8 @@
# It checks that projects.yaml alphabetized and prints list of projects that
# should be sorted.
export TMPDIR=`/bin/mktemp -d`
TMPDIR=$(mktemp -d)
export TMPDIR
trap "rm -rf $TMPDIR" EXIT
pushd $TMPDIR

View File

@ -2,7 +2,8 @@
# It checks that *.config files respect certain gerrit ACL rules
export TMPDIR=$(/bin/mktemp -d)
TMPDIR=$(mktemp -d)
export TMPDIR
trap "rm -rf $TMPDIR" EXIT
pushd $TMPDIR

View File

@ -83,6 +83,7 @@ valid_keys = {'abandon',
'requireContributorAgreement',
'state',
'submit',
'toggleWipState',
'value'}
if '0' in transformations or not transformations: