├── .github ├── ISSUE_TEMPLATE │ ├── contributor_bug_report.md │ ├── contributor_feature_request.md │ ├── contributor_plugin_ownership_transfer.md │ └── contributor_plugin_removal.md └── dco.yml └── README.md /.github/ISSUE_TEMPLATE/contributor_bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 'Bug report' 3 | about: 'Create a report to help us improve' 4 | labels: 'a:bug' 5 | --- 6 | 7 | 12 | 13 | 14 | 15 | ### Expected Behavior 16 | 17 | 18 | ### Current Behavior 19 | 20 | 21 | ### Context 22 | 23 | 24 | 25 | ### Steps to Reproduce 26 | 27 | 28 | ### Your Environment 29 | 30 | 31 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contributor_feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 'Feature request' 3 | about: 'Suggest an idea for this project' 4 | labels: 'a:feature' 5 | --- 6 | 7 | 12 | 13 | 14 | 15 | ### Expected Behavior 16 | 17 | 18 | ### Current Behavior 19 | 20 | 21 | ### Context 22 | 23 | 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contributor_plugin_ownership_transfer.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 'Plugin Ownership Transfer' 3 | about: 'Transfer the ownership of a plugin' 4 | labels: 'a:ownership-transfer' 5 | --- 6 | 7 | 15 | 16 | 17 | 18 | ### Plugin Id 19 | 20 | 21 | ### Current Plugin Owner 22 | 23 | 24 | ### Expected Plugin Owner 25 | 26 | 27 | ### Context 28 | 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/contributor_plugin_removal.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 'Plugin Removal' 3 | about: 'Remove a plugin from the portal' 4 | labels: 'a:removal' 5 | --- 6 | 7 | 15 | 16 | 17 | 18 | ### Plugin Id 19 | 20 | 21 | ### Current Plugin Owner 22 | 23 | 24 | ### Context 25 | 26 | 27 | -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | # Disable sign-off checking for members of the Gradle GitHub organization 2 | require: 3 | members: false 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Gradle Plugin Portal Requests 2 | 3 | 4 | ## Features and Bugs 5 | 6 | Please add your Gradle Plugin Portal bug reports or feature requests by opening an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose). 7 | This is also applicable to the [Gradle Plugin Publishing plugin](https://plugins.gradle.org/plugin/com.gradle.plugin-publish). 8 | 9 | ## Help with the plugin portal 10 | 11 | ### Deleting a plugin or version 12 | 13 | If you've published a version of your plugin to the plugin portal and you need to remove it, you have 7 days from the time the plugin is published to delete it. After that, you will need to open an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose). Please let us know which plugin and version you would like to delete and how we can verify that you're the owner of the plugin. 14 | 15 | We really want to avoid deleting existing plugins when possible since this may break existing builds. If you've stopped development on your plugin or have published it under a new name, please open an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose) and we can mark the plugin deprecated and point users to the new plugin. 16 | 17 | ### Transferring ownership 18 | 19 | If you've handed development of a plugin to someone else, we can transfer that plugin to the new account. 20 | 21 | Open an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose) and provide: 22 | - A link to the plugin to be transferred 23 | - Who you would like to transfer the plugin to (user name or link to their user profile) 24 | 25 | You may need to provide proof you're the current owner. 26 | 27 | ### Changing links, tags or description 28 | 29 | To change the links, tags or description of your plugin, open an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose) with a link to the plugin and what changes you would like to see. 30 | 31 | ### Changing account information 32 | 33 | If you need to delete your user account or change the email associated with it, please open an [issue](https://github.com/gradle/plugin-portal-requests/issues/new/choose). 34 | 35 | If you'd like to keep your email private, please email us at plugin-portal-support@gradle.com. 36 | --------------------------------------------------------------------------------