From 65efc68d9a3808f8b1bfabd4707e6ea4688bf66c Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 16 Dec 2024 10:43:19 -0500 Subject: [PATCH] jenkins/config: allow rhkdump org members to cancel and retrigger runs Ideally these ACLs would be finer-grained still so that each org members can only affect jobs related to their orgs. But OTOH cancelling and retriggering tests doesn't have to be a super privileged action anyway. --- jenkins/config/github-oauth.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jenkins/config/github-oauth.yaml b/jenkins/config/github-oauth.yaml index 2be9fba..59f93a0 100644 --- a/jenkins/config/github-oauth.yaml +++ b/jenkins/config/github-oauth.yaml @@ -13,13 +13,15 @@ jenkins: # administer Jenkins - "Overall/Administer:coreos*fedora-coreos-tools" - "Overall/Administer:coreos*fedora-coreos-releng" - # allow anyone in coreos/ostreedev/openshift to cancel and retrigger runs + # allow anyone in coreos/ostreedev/openshift/rhkdump to cancel and retrigger runs - "Job/Build:coreos" - "Job/Build:ostreedev" - "Job/Build:openshift" + - "Job/Build:rhkdump" - "Job/Cancel:coreos" - "Job/Cancel:ostreedev" - "Job/Cancel:openshift" + - "Job/Cancel:rhkdump" # anonymous people can only see logs - "Overall/Read:anonymous" - "Job/Read:anonymous"