From 6508f48efbf73db4ee7ba0d3e2c551f4935d8c01 Mon Sep 17 00:00:00 2001 From: Eduard van Valkenburg Date: Tue, 22 Jul 2025 21:04:21 +0200 Subject: [PATCH] Add Labeler.yaml to Actions (#213) * move all tests under tests and initial work on int tests * added updated tests setup and merge tests * without failing step * fixed upload * updated file names for coverage * reenable surface tests * removed package matrix * simplified variables * correct path * removed mistake * fix mistake in path * fix path * windows specific env set * updated merge tests * slight update in marker * added run integration tests settings * updated setup, moved foundry int tests and updated merge test * add labeler --- .github/labeler.yml | 12 ++++++++++++ .github/pull_request_template.md | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..5f9be9ab3f --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,12 @@ +# Add 'python' label to any change within the 'python' directory +python: + - python/**/* + +# Add '.NET' label to any change within samples or kernel 'dotnet' directories. +.NET: + - dotnet/**/* + +# Add 'documentation' label to any change within the 'docs' directory, or any '.md' files +documentation: + - docs/**/* + - '**/*.md' diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 33c245efe4..33faf7afd9 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,6 @@ ### Motivation and Context - - [ ] The code builds clean without any errors or warnings -- [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/agent-framework/blob/main/CONTRIBUTING.md) +- [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/agent-framework/blob/main/CONTRIBUTING.md) - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone :smile: