A new GitHub issue template configuration file has been added to newly created adapters that includes a link to the ioBroker community forum, encouraging users to ask questions there instead of creating GitHub issues.
For newly created adapters:
- A new file
.github/ISSUE_TEMPLATE/config.ymlis automatically generated - This file contains configuration that:
- Disables blank issues (
blank_issues_enabled: false) - Provides a contact link to the ioBroker community forum
- Displays the message "Please ask and answer questions here"
- Disables blank issues (
Configuration content:
blank_issues_enabled: false
contact_links:
- name: ioBroker Community
url: https://forum.iobroker.net/
about: Please ask and answer questions here.This change only affects newly created adapters. Existing adapters continue to work without any changes required.
However, if you want to add the same forum link configuration to an existing adapter, you can manually add it:
-
Create the directory structure if it doesn't exist:
mkdir -p .github/ISSUE_TEMPLATE
-
Create the file
.github/ISSUE_TEMPLATE/config.ymlwith the following content:blank_issues_enabled: false contact_links: - name: ioBroker Community url: https://forum.iobroker.net/ about: Please ask and answer questions here.
-
Commit and push the changes to your repository.