From 20eac79380315fcdb17ca6c782a481294fda8c60 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Thu, 12 Oct 2023 19:44:13 +0500 Subject: [PATCH] Correct issue label names per recent changes (#160) Issue labels have been reworked recently, causing some files in `.github` to reference non-existing issue labels. This PR updates the names of labels in these files. --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/feature-request.yml | 2 +- .github/dependabot.yml | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 3f1083a..691e635 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,6 +1,6 @@ name: Bug Report description: Create a report to help us improve -labels: [ "bug" ] +labels: [ "type: bug" ] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 6dac200..e840cf6 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: Feature Request description: Create a request for a feature you would like -labels: [ "type: enhancement" ] +labels: [ "type: feature" ] body: - type: textarea id: background diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fd32dff..77a6b9e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,7 +13,8 @@ updates: # Allow both direct and indirect updates for all packages - dependency-type: "all" labels: - - "type: dependencies" + - "type: change" + - "area: build/ci" - package-ecosystem: "nuget" # See documentation for possible values directory: "/" # Location of package manifests @@ -23,4 +24,5 @@ updates: # Allow both direct and indirect updates for all packages - dependency-type: "all" labels: - - "type: dependencies" + - "type: change" + - "area: build/ci"