From e882bbc1b9f599736654ad0947f0b2988b5ec8a6 Mon Sep 17 00:00:00 2001 From: Builditluc Date: Wed, 4 Dec 2024 14:22:59 +0100 Subject: [PATCH] Update github pipelines and issue template Signed-off-by: Builditluc --- .autorc | 29 ---------------------------- .github/ISSUE_TEMPLATE/bug-report.md | 6 +++++- .github/release.yml | 25 ------------------------ 3 files changed, 5 insertions(+), 55 deletions(-) delete mode 100644 .autorc delete mode 100644 .github/release.yml diff --git a/.autorc b/.autorc deleted file mode 100644 index f6456aee..00000000 --- a/.autorc +++ /dev/null @@ -1,29 +0,0 @@ -{ - "plugins": [ - "first-time-contributor", - [ - "omit-release-notes", - { - "labels": "ignore-release" - } - ] - ], - "owner": "builditluc", - "repo": "wiki-tui", - "baseBranch": "main", - - "noDefaultLabels": true, - "labels": [ - { "name": "breaking-change", "description": "This introduces a breaking change to the codebase. Increment the major version", "changelogTitle": "Breaking Changes 🛠", "releaseType": "major", "color": "#b60205" }, - { "name": "type: bug", "description": "This fixes a bug. Increment the minor version", "changelogTitle": "Bug Fixes 🐛", "releaseType": "patch", "color": "#b60205" }, - { "name": "type: chore", "description": "Updates to the build process or dependency updates", "changelogTitle": "CI Pipeline and Dependency Updates", "releaseType": "none", "color": "#fef2c0" }, - { "name": "type: documentation", "description": "Changes to the documentation (in code and external documentation)", "changelogTitle": "Documentation Changes", "releaseType": "none", "color": "#1d76db" }, - { "name": "type: feature", "description": "Implements a new feature", "changelogTitle": "Exciting New Features 🎉", "releaseType": "minor", "color": "#a2eeef" }, - { "name": "type: refactor", "description": "Changes to the style and structure of the codebase or project", "changelogTitle": "Structure and Style Changes", "releaseType": "none", "color": "#bfdadc" }, - { "name": "type: testing", "description": "Changes to the tests", "changelogTitle": "Tests", "releaseType": "none", "color": "#f9d0c4" }, - { "name": "ignore-release", "description": "This won't be included in the release notes", "releaseType": "skip", "color": "#5ceb33" }, - { "name": "other", "releaseType": "none", "default": true, "changelogTitle": "Other Changes" } - ], - - "changelog": { "message": "Update Changelog" } -} diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 519355a4..163d94c9 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -11,7 +11,11 @@ assignees: '' Version: Installation Method: Operating System: -Backend (If changed during install): + +Used configuration (if available): +``` + +``` **Describe the bug** A clear and concise description of what the bug is. diff --git a/.github/release.yml b/.github/release.yml deleted file mode 100644 index 97a08e2e..00000000 --- a/.github/release.yml +++ /dev/null @@ -1,25 +0,0 @@ -changelog: - exclude: - authors: - - allcontributors - labels: - - ignore-release - categories: - - title: Breaking Changes 🛠 - labels: - - breaking-change - - title: Exciting New Features 🎉 - labels: - - "type: feature" - - title: Bug Fixes 🐛 - labels: - - "type: bug" - - title: Documentation Changes - labels: - - "type: documentation" - - title: Style and Structure Changes - labels: - - "type: refactor" - - title: Other Changes - labels: - - "*"