├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md └── workflows │ └── close-stale-tickets.yml └── README.md /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Oxygen Bug Report 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Any bug report that doesn't include a Sandbox link or replication steps will be closed. If you can't provide these pieces of information, we're happy to help you via our official support channel instead: https://oxygenbuilder.com/support. You need to select "Something's broken and I need help" from the dropdown box on the left.** 11 | 12 | **Describe the bug** 13 | *A clear and concise description of what the bug is.* 14 | 15 | **A link to a Sandbox site where the bug has been reproduced https://oxygenbuilder.com/try? (REQUIRED)** 16 | *Provide the link to a Sandbox install where the issue is present. If the issue only exists on a specific post or template, provide a direct link to that post or template.* 17 | 18 | **IF YOU CAN'T PROVIDE A SANDBOX REPRODUCTION: Steps required to reproduce the bug:** 19 | Steps to reproduce the behavior: 20 | 1. Go to '...' 21 | 2. Click on '....' 22 | 3. Scroll down to '....' 23 | 4. See error 24 | 25 | **If you can't fill out the above information, you should not be filing a bug report. Instead, contact us via https://oxygenbuilder.com/support with the details you have and we'll investigate your issue further.** 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest a feature for Oxygen 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the feature you'd like to see included in Oxygen.** 11 | *A clear, detailed description of the feature you're requesting.* 12 | 13 | **What are the use cases for this feature?** 14 | *e.g. Accessibility, e-commerce store that sells bicycles, etc.* 15 | 16 | **Examples of this feature or functionality.** 17 | *If another product has done it well, provide examples here.* 18 | -------------------------------------------------------------------------------- /.github/workflows/close-stale-tickets.yml: -------------------------------------------------------------------------------- 1 | # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. 2 | # 3 | # You can adjust the behavior by modifying this file. 4 | # For more information, see: 5 | # https://github.com/actions/stale 6 | name: Mark stale issues 7 | 8 | on: 9 | schedule: 10 | - cron: '00 11 * * *' 11 | 12 | jobs: 13 | stale: 14 | 15 | runs-on: ubuntu-latest 16 | permissions: 17 | issues: write 18 | 19 | steps: 20 | - uses: actions/stale@v8.0.0 21 | with: 22 | repo-token: ${{ secrets.GITHUB_TOKEN }} 23 | close-issue-message: 'Closed as Stale due to no updates in the last 60 days' 24 | close-issue-label: 'Stale' 25 | any-of-labels: 'Need more info' 26 | days-before-close: 60 27 | remove-stale-when-updated: true 28 | labels-to-remove-when-stale: 'Need more info' 29 | labels-to-remove-when-unstale: 'Stale' 30 | labels-to-add-when-unstale: 'Review' 31 | 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > IMPORTANT: If you refuse to follow the template provided for bug reports, we'll probably close your report and ask you to submit a support request via https://oxygenbuilder.com/support instead. 2 | 3 | # Oxygen Bugs and Features 4 | 5 | This repository is for the submission and tracking of bug reports and feature requests for Oxygen Classic. 6 | 7 | How to submit a bug report 8 | --- 9 | 10 | **BEFORE SUBMITTING A BUG REPORT:** Please try all of the steps listed at https://oxygenbuilder.com/documentation/troubleshooting/troubleshooting-guide/. These steps solve many common issues. If the steps don't solve the problem, proceed. 11 | 12 | 1. Click "Issues" 13 | 2. Click "New Issue" 14 | 3. Click "Bug Report" 15 | 4. Add a title that briefly describes the bug 16 | 5. Fill out the template with the appropriate information. 17 | **(NOTE: If you can't fill out most fields on the template, don't submit a bug report. Instead, submit a support request via https://oxygenbuilder.com/support and we'll help troubleshoot the problem.)** 18 | 6. Click "Submit new issue" 19 | 20 | The bug report will be submitted for review. To check the status of your bug report or to check if the bug has already been reported, please check our open bug reports at: https://github.com/soflyy/oxygen-bugs-and-features/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abug. 21 | 22 | How to submit a feature request 23 | --- 24 | 25 | **BEFORE SUBMITTING A FEATURE REQUEST:** Please check the Feature Requests project at https://github.com/soflyy/oxygen-bugs-and-features/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement for existing feature requests that match yours. If one already exists, please vote for it rather than submitting a new request for the same feature. 26 | 27 | 1. Click "Issues" 28 | 2. Click "New Issue" 29 | 3. Click "Feature Request" 30 | 4. Add a title that briefly describes the feature 31 | 5. Fill out the template with the appropriate information 32 | 6. Click "Submit new issue" 33 | 34 | This feature request will be submitted for review. To check the status of your feature request, or to vote on other feature requests, visit the Feature Requests project at https://github.com/soflyy/oxygen-bugs-and-features/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement. 35 | 36 | ### How to vote for features 37 | 38 | 1. Go to the Feature Requests project (https://github.com/soflyy/oxygen-bugs-and-features/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) 39 | 2. Click on the feature you'd like to vote for 40 | 3. On the right hand side where the feature request information appears, hover over the submittor's username 41 | 4. Click the smiley face to the right of the username and choose the thumbs up icon 42 | 43 | We strongly encourage our users to vote for features that they'd like to see in future versions of Oxygen. 44 | --------------------------------------------------------------------------------