{"id":22281686,"url":"https://github.com/jenkinsci/favorite-plugin","last_synced_at":"2026-04-30T23:04:19.301Z","repository":{"id":538395,"uuid":"1163546","full_name":"jenkinsci/favorite-plugin","owner":"jenkinsci","description":"Jenkins favorite plugin","archived":false,"fork":false,"pushed_at":"2026-01-18T15:17:55.000Z","size":1745,"stargazers_count":9,"open_issues_count":1,"forks_count":30,"subscribers_count":91,"default_branch":"master","last_synced_at":"2026-02-02T04:18:44.856Z","etag":null,"topics":["misc","ui"],"latest_commit_sha":null,"homepage":"https://plugins.jenkins.io/favorite/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jenkinsci.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2010-12-13T05:33:59.000Z","updated_at":"2026-01-18T14:48:11.000Z","dependencies_parsed_at":"2023-02-12T19:40:20.382Z","dependency_job_id":"e65f49fa-9a24-47ab-92c8-94fd0a1d6681","html_url":"https://github.com/jenkinsci/favorite-plugin","commit_stats":null,"previous_names":[],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/jenkinsci/favorite-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ffavorite-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ffavorite-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ffavorite-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ffavorite-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkinsci","download_url":"https://codeload.github.com/jenkinsci/favorite-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ffavorite-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32479450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["misc","ui"],"created_at":"2024-12-03T16:20:33.120Z","updated_at":"2026-04-30T23:04:19.252Z","avatar_url":"https://github.com/jenkinsci.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jenkins Favorite Plugin\n\nThis plugin allows you to mark a job a favorite. This is controlled via a\nlist view column you need to add to a view. You can then click on a star\nto favorite or unfavorite a job. There is also a job filter to allow you\nto create a view that only shows your favorites.\n\n#### Precaution\n\nOlder versions of this plugin may not be safe to use. Please review the\nfollowing warnings before using an older version:\n\n-   [Missing permission check allows anyone to change favorites for any\n    other user](https://jenkins.io/security/advisory/2017-06-06/)\n-   [CSRF vulnerability allows changing another user's\n    favorites](https://jenkins.io/security/advisory/2017-06-06/)\n\n## Configuration\n\nIt is recommended you change your default view to either one you create,\nor follow the directions in [Editing or Replacing the All\nView](https://wiki.jenkins.io/display/JENKINS/Editing+or+Replacing+the+All+View)\nto allow the Favorite column to show up. Once you have the Favorite\ncolumn, it will show a star that logged in users will be able to click\nto make a favorite. You can also add another view, and apply the\n\"Favorites Filter\" to show favorites only in that view.\n\n## Theme Developer Notice\n\nUI Files:\n\n  * See JS: [assets.js](./src/main/resources/hudson/plugins/favorite/assets.js)\n  * See CSS: [assets.css](./src/main/resources/hudson/plugins/favorite/assets.css)\n\nYou can subscribe to the fav-icon change event:\n\n```js\nwindow.dispatchEvent(new CustomEvent('favorite-plugin-icon-change', {\n  transition: \"active-to-inactive\",\n  job: job\n}));\n```\n\n\n## Development\n\n### Prerequisites\n\nYou need the following tools installed on your system.\n\n  * [Apache Maven](https://maven.apache.org/)\n\n### Build\n\nBuild the `target/favorite.hpi` plugin file with the `mvn package` command.\n\n### Run\n\nStartup Jenkins with the Plugin.  \n\n```shell\nmvn clean hpi:run \n```\n\nNow go to http://localhost:8080/jenkins and test the Plugin.\nYou might need to update plugins via GUI.\n\nInstall the plugins `Pipeline` and `Folders` to test that favoriting these kind of items work without problems.\n\nRemember to clean the `work` dir if something strange is happening, like plugin is not reloaded.\n\n```shell\nrm -rf work/*\n```\n\n### Pre Release Tests\n\n **Testcase 1: Favorite Column on Job List Page**\n\n  * You are on the Job List Page and have created at least one Build Job.\n  * On the right a column `F` needs to show up and show a grey star for the job.\n  * With a click on the grey star the star turns golden and the job is added as favorite.\n  * Preview:\n    * ![testcase-1-favorite-column](https://cloud.githubusercontent.com/assets/12599965/20640106/2d7b5094-b3d6-11e6-8623-180056acb82d.gif)\n\n\n **Testcase 2: Favorite Entries on User Config Page**\n\n  * On the Jenkins Start Page click on the small arrow right to your username in the top right corner.\n  * In the appearing dropdown click on `Favorites`.\n  * When clicking the golden star you can remove a job as favorite.\n  * Preview:\n    * ![testcase-2-favorite-config](docs/user-favorites.gif)\n\n## Changelog\nFor recent versions, see [GitHub Releases](https://github.com/jenkinsci/favorite-plugin/releases)\n\nFor versions 2.3.2 and older, see [CHANGELOG.md](CHANGELOG.md)\n\n## License\n\nLicensed under [MIT License](./LICENSE.md)\n\n## Author\n\nLarry Shatzer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Ffavorite-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkinsci%2Ffavorite-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Ffavorite-plugin/lists"}