diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 16 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 2 | ||||
-rw-r--r-- | .github/workflows/document.yml | 2 |
3 files changed, 18 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 20ef2b73..79441958 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -8,6 +8,22 @@ body: Thanks for taking the time to fill out this bug report! - type: checkboxes attributes: + label: Is your issue REALLY a bug? + description: | + This issue tracker is for __BUG REPORTS ONLY__. + + It's obvious, right? This is a bug report form, after all! Still, some crazy users seem to forcefully fill out this form just to ask questions and request features. + + The core team does not appreciate that. Don't do it. + + If you want to ask a question or request a feature, please [go back here](https://github.com/iced-rs/iced/issues/new/choose) and read carefully. + options: + - label: My issue is indeed a bug! + required: true + - label: I am not crazy! I will not fill out this form just to ask a question or request a feature. Pinky promise. + required: true + - type: checkboxes + attributes: label: Is there an existing issue for this? description: | Please, search [the existing issues] and see if an issue already exists for the bug you encountered. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5177386c..3e2486d3 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,7 +3,7 @@ contact_links: - name: I have a question url: https://discourse.iced.rs/c/learn/6 about: Ask and learn from others in the Discourse forum. - - name: I want to start a discussion + - name: I want to request a feature or start a discussion url: https://discourse.iced.rs/c/request-feedback/7 about: Share your idea and gather feedback in the Discourse forum. - name: I want to chat with other users of the library diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index 827a2ca8..a213e590 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: hecrj/setup-rust-action@v2 with: - rust-version: nightly-2023-12-11 + rust-version: nightly - uses: actions/checkout@v2 - name: Generate documentation run: | |