From ca9951291616f9c8b7ee9187297be71869ad19fb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 00:26:22 +0000 Subject: [PATCH 1/2] Initial plan From 31b912011e0537029c59abb1499da8cc24cb27aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 00:28:42 +0000 Subject: [PATCH 2/2] Add dependencies and dotnet labels to create-labels workflow Co-authored-by: Chris-Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> --- .github/workflows/create-labels.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/create-labels.yaml b/.github/workflows/create-labels.yaml index 49e6298..e411558 100644 --- a/.github/workflows/create-labels.yaml +++ b/.github/workflows/create-labels.yaml @@ -36,3 +36,31 @@ jobs: } catch (error) { // Ignore if label already exists } + - name: Create "dependencies" label + uses: actions/github-script@v6 + with: + script: | + try { + await github.rest.issues.createLabel({ + owner: context.repo.owner, + repo: context.repo.repo, + name: "dependencies", + color: "0366d6" + }); + } catch (error) { + // Ignore if label already exists + } + - name: Create "dotnet" label + uses: actions/github-script@v6 + with: + script: | + try { + await github.rest.issues.createLabel({ + owner: context.repo.owner, + repo: context.repo.repo, + name: "dotnet", + color: "512bd4" + }); + } catch (error) { + // Ignore if label already exists + }