{"id":15045246,"url":"https://github.com/jenkinsci/authorize-project-plugin","last_synced_at":"2026-05-11T13:12:59.072Z","repository":{"id":12054511,"uuid":"14640734","full_name":"jenkinsci/authorize-project-plugin","owner":"jenkinsci","description":"Run a job with specified authorization","archived":false,"fork":false,"pushed_at":"2025-05-02T18:16:32.000Z","size":915,"stargazers_count":17,"open_issues_count":0,"forks_count":38,"subscribers_count":98,"default_branch":"master","last_synced_at":"2025-05-02T19:25:44.556Z","etag":null,"topics":["adopt-this-plugin","jenkins-plugin","security"],"latest_commit_sha":null,"homepage":"https://plugins.jenkins.io/authorize-project/","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"mongrel2/Tir","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jenkinsci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-11-23T10:51:33.000Z","updated_at":"2025-05-02T18:16:28.000Z","dependencies_parsed_at":"2023-12-23T12:01:02.747Z","dependency_job_id":"88399cea-633e-4731-98e5-51afc5f6f9ee","html_url":"https://github.com/jenkinsci/authorize-project-plugin","commit_stats":{"total_commits":381,"total_committers":23,"mean_commits":"16.565217391304348","dds":0.7086614173228347,"last_synced_commit":"6551f9cb035ea84f760f984551a45d4ca0b8ebdd"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/jenkinsci/authorize-project-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fauthorize-project-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fauthorize-project-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fauthorize-project-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fauthorize-project-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkinsci","download_url":"https://codeload.github.com/jenkinsci/authorize-project-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Fauthorize-project-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266520982,"owners_count":23942368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adopt-this-plugin","jenkins-plugin","security"],"created_at":"2024-09-24T20:51:37.823Z","updated_at":"2026-05-11T13:12:59.065Z","avatar_url":"https://github.com/jenkinsci.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Authorize Project Plugin for Jenkins\n\n[![Jenkins Plugin](https://img.shields.io/jenkins/plugin/v/authorize-project.svg)](https://plugins.jenkins.io/authorize-project)\n[![Jenkins Plugin Installs](https://img.shields.io/jenkins/plugin/i/authorize-project.svg?color=blue)](https://plugins.jenkins.io/authorize-project)\n[![Build Status](https://ci.jenkins.io/buildStatus/icon?job=Plugins%2Fauthorize-project-plugin%2Fmaster)](https://ci.jenkins.io/job/Plugins/job/authorize-project-plugin/job/master/)\n[![GitHub release](https://img.shields.io/github/v/release/jenkinsci/authorize-project-plugin)](https://github.com/jenkinsci/authorize-project-plugin/releases)\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\nConfigure projects to run builds with specified authorization using [QueueItemAuthenticator](https://javadoc.jenkins.io/jenkins/security/QueueItemAuthenticator.html).\n\n## Features\n\n### Authorization Strategies\n\n| Strategy | Description |\n|----------|-------------|\n| **Run as the user who triggered the build** | Does not work for scheduled or polled builds. Only users with BUILD permission can configure projects. |\n| **Run as anonymous** | Runs the build with no permissions. |\n| **Run as a specific user** | Requires password/API token of the target user, unless you are an administrator or specifying yourself. |\n| **Run as SYSTEM** | Provided only to override the global configuration. Plugins may treat SYSTEM as anonymous. |\n\n### Access Control\n\nWhen \"Run as Specific User\" is selected:\n\n- Administrators can specify any user without authentication.\n- Non-admin users specifying a different user must provide credentials (password or API token).\n- Only administrators and the configured user can modify the project configuration, unless \"Don't restrict job configuration\" is enabled.\n\n## Configuration\n\n### Global Security\n\nAdd \"Configure Build Authorizations in Project Configuration\" under **Manage Jenkins \u003e Security \u003e Access Control for Builds**. You can also disable specific strategies from this page.\n\n![Global Security Configuration](docs/images/authorize-project_01_globalsecurity.png)\n\n### Project Authorization\n\nA new **Authorization** menu appears in project sidebars, where you select the authorization strategy for that project.\n\n| | |\n|---|---|\n| ![Sidebar](docs/images/sidebar.png) | ![Authorization Page](docs/images/authorization-page.png) |\n\nWhen using \"Run as Specific User\", you can authenticate via password or API token (useful for non-password-based security realms).\n\n![Specific User](docs/images/authorization-page-specific-user.png)\n\nUnauthorized configuration attempts are blocked:\n\n![Access Denied](docs/images/access-denied.png)\n\n## Extension Point\n\nAdd custom authorization strategies by extending [`AuthorizeProjectStrategy`](https://javadoc.jenkins.io/plugin/authorize-project/org/jenkinsci/plugins/authorizeproject/AuthorizeProjectStrategy.html):\n\n```java\npublic abstract Authentication authenticate(\n    hudson.model.AbstractProject\u003c?, ?\u003e project,\n    hudson.model.Queue.Item item\n);\n```\n\nUse `AuthorizeProjectStrategyDescriptor` for your `Descriptor`. For global configuration properties, provide a `global-security.jelly` and override `AuthorizeProjectStrategyDescriptor#configureFromGlobalSecurity`.\n\n## Issues\n\nReport bugs and request features via [GitHub Issues](https://github.com/jenkinsci/authorize-project-plugin/issues).\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Changelog\n\nSee [GitHub Releases](https://github.com/jenkinsci/authorize-project-plugin/releases) for recent changes and the [Changelog Archive](https://github.com/jenkinsci/authorize-project-plugin/blob/authorize-project-1.6.0/docs/CHANGELOG.old.md) for version 1.3.0 and older.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Fauthorize-project-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkinsci%2Fauthorize-project-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Fauthorize-project-plugin/lists"}