From 7e5aaec79267ef563994ad0f3005406751157784 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 25 Jan 2022 15:15:52 +0000 Subject: [PATCH] Update bindep ACL to use new createSignedTag perm The pushSignedTag permission is deprecated, and has a new name: createSignedTag. Update the opendev/bindep ACL accordingly, as we're seeing a regression with the old name and would like to rule out whether the new name has the same problem. Change-Id: Ia95919bcfe71ce488096584c784fe7376f66f34a --- gerrit/acls/opendev/bindep.config | 2 +- tools/normalize_acl.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gerrit/acls/opendev/bindep.config b/gerrit/acls/opendev/bindep.config index 5d7d06e779..ec23d2d1f8 100644 --- a/gerrit/acls/opendev/bindep.config +++ b/gerrit/acls/opendev/bindep.config @@ -4,7 +4,7 @@ label-Code-Review = -2..+2 group bindep-core label-Workflow = -1..+1 group bindep-core [access "refs/tags/*"] -pushSignedTag = group bindep-release +createSignedTag = group bindep-release [receive] requireChangeId = true diff --git a/tools/normalize_acl.py b/tools/normalize_acl.py index f4acf3f6d0..78188437c5 100755 --- a/tools/normalize_acl.py +++ b/tools/normalize_acl.py @@ -64,6 +64,7 @@ valid_keys = {'abandon', 'copyMaxScore', 'copyMinScore', 'create', + 'createSignedTag', 'defaultValue', 'delete', 'editHashtags',