├── .github └── ISSUE_TEMPLATE │ ├── PLAYGROUND.yaml │ └── WEBSITE.yaml └── README.md /.github/ISSUE_TEMPLATE/PLAYGROUND.yaml: -------------------------------------------------------------------------------- 1 | name: Java Playground 2 | description: Issue(s) or suggestion(s) related to the Java Playground. Please don't use this issue tracker to report potential vulnerabilities. 3 | title: "[Bug]: " 4 | labels: ["playground"] 5 | assignees: 6 | - octocat 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | :warning: If you believe you have found a security vulnerability in the Java Playground please report it through [Oracle's Security Vulnerability reporting process](https://www.oracle.com/corporate/security-practices/assurance/vulnerability/reporting.html). 12 | 13 | Thanks for taking the time to fill out this report! 14 | - type: textarea 15 | id: what-happened 16 | attributes: 17 | label: What happened? 18 | description: "Also tell us, what did you expect to happen? Make sure to inlcude any relevant information. If needed, you can upload screeshot(s) in this area." 19 | placeholder: Please, tell us what you see. 20 | value: "An issue happened!" 21 | validations: 22 | required: true 23 | - type: dropdown 24 | id: os 25 | attributes: 26 | label: OS 27 | description: What Operating System are you using? 28 | options: 29 | - Windows 30 | - macOS 31 | - Linux 32 | - Other 33 | validations: 34 | required: true 35 | - type: dropdown 36 | id: browser 37 | attributes: 38 | label: What browsers are you seeing the problem on? 39 | multiple: true 40 | options: 41 | - Firefox 42 | - Chrome 43 | - Safari 44 | - Microsoft Edge 45 | - Brave 46 | - Other 47 | - type: input 48 | id: contact 49 | attributes: 50 | label: Contact Details (optional) 51 | description: If you agree to be contacted should we need more info, please leave your email. Note that your email will be visible in this report. 52 | placeholder: ex. email@example.com 53 | validations: 54 | required: false 55 | - type: input 56 | id: detail 57 | attributes: 58 | label: Additional information 59 | description: "Ignore this field if it's empty." 60 | value: "Leave blank" 61 | validations: 62 | required: false 63 | 64 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/WEBSITE.yaml: -------------------------------------------------------------------------------- 1 | name: Java DevRel Websites 2 | description: Issue(s) and suggestion(s) related to Java DevRel websites, ex. https://inside.java, https://dev.java, etc. 3 | title: "[Web]:" 4 | labels: ["Web"] 5 | assignees: 6 | - octocat 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this report. 11 | - type: textarea 12 | id: what-happened 13 | attributes: 14 | label: What happened? 15 | description: "Also tell us, what did you expect to happen? Make sure to inlcude any relevant information inlcuding the URL. If needed, you can upload screeshot(s) in this area." 16 | placeholder: Please, tell us what you see and on which site. 17 | value: "An issue happened!" 18 | validations: 19 | required: true 20 | - type: dropdown 21 | id: os 22 | attributes: 23 | label: What OS are you seeing the problem on? 24 | multiple: false 25 | options: 26 | - Linux 27 | - macOS 28 | - Windows 29 | - iOS 30 | - Android 31 | - Other 32 | validations: 33 | required: true 34 | - type: dropdown 35 | id: browsers 36 | attributes: 37 | label: What browsers are you seeing the problem on? 38 | multiple: true 39 | options: 40 | - Firefox 41 | - Chrome 42 | - Safari 43 | - Brave 44 | - Microsoft Edge 45 | - Other 46 | validations: 47 | required: true 48 | - type: input 49 | id: contact 50 | attributes: 51 | label: Contact Details (optional) 52 | description: If you agree to be contacted should we need more info, please leave your email. Note that your email will be visible in this report. 53 | placeholder: ex. email@example.com 54 | validations: 55 | required: false 56 | 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Java DevRel Feedback 2 | 3 | This issue tracker can be used report issues and suggestions around the various Java Platfrom Group DevRel initiatives. 4 | You can also contact us using java_devrel_grp@oracle.com 5 | 6 | 7 | ### Java Playground 8 | 9 | The [Java Playground](https://dev.java/playground) is an online tool that one can use to explore new Java languages feature. No setup required, just type your Java snippet and run it! 10 | 11 | Click [here](https://github.com/java/devrel/issues/new?assignees=octocat&labels=bug%2Cplayground&projects=&template=PLAYGROUND.yaml&title=%5BBug%5D%3A+) to report a suggestion and/or an issue related to the Playground. 12 | 13 | ⚠️ If you believe you have found a security vulnerability, please only report it through [Oracle's Security Vulnerability reporting channels](https://www.oracle.com/corporate/security-practices/assurance/vulnerability/reporting.html) and not via this issue tracker. 14 | 15 | 16 | ### Web Sites 17 | 18 | The DevRel team maintains several web sites including [dev.java](https://dev.java) and [inside.java](https://inside.java). 19 | 20 | Click [here](https://github.com/java/devrel/issues/new?assignees=octocat&labels=webiste&projects=&template=WEBSITE.yaml&title=%5BWeb+Issue%5D%3A) to report a suggestion and/or an issue related to our various web sites. 21 | --------------------------------------------------------------------------------