Allow users with write permission to run actions (#32644)

---
I have a use case where I need a team to be able to run actions without
admin access.
This commit is contained in:
Pedro Nishiyama 2024-11-28 04:18:23 -03:00 committed by GitHub
parent 16a7d343d7
commit 1b296ed1a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -1406,7 +1406,7 @@ func registerRoutes(m *web.Router) {
m.Get("", actions.List)
m.Post("/disable", reqRepoAdmin, actions.DisableWorkflowFile)
m.Post("/enable", reqRepoAdmin, actions.EnableWorkflowFile)
m.Post("/run", reqRepoAdmin, actions.Run)
m.Post("/run", reqRepoActionsWriter, actions.Run)
m.Group("/runs/{run}", func() {
m.Combo("").