diff --git a/.github/labeler.yml b/.github/labeler.yml index 2796d993..867c31c5 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,26 +1,36 @@ "theme:workflow": - - ".github/**" + - changed-files: + - any-glob-to-any-file: ".github/**" "theme:build": - - "*.sln" - - "**/*.csproj" - - ".gitignore" - -"theme:model": - - "allure-model/**" + - changed-files: + - any-glob-to-any-file: + - "*.sln" + - "**/*.csproj" + - "Directory.Build.props" + - ".gitignore" "theme:core": - - "Allure.Net.Commons/**" - - "Allure.Net.Commons.Tests/**" + - changed-files: + - any-glob-to-any-file: + - "Allure.Net.Commons/**" + - "Allure.Net.Commons.Tests/**" "theme:xunit": - - "Allure.XUnit/**" - - "Allure.XUnit.Tests/**" + - changed-files: + - any-glob-to-any-file: + - "Allure.XUnit/**" + - "Allure.XUnit.Tests/**" "theme:nunit": - - "Allure.NUnit/**" - - "Allure.NUnit.Tests/**" + - changed-files: + - any-glob-to-any-file: + - "Allure.NUnit/**" + - "Allure.NUnit.Tests/**" "theme:specflow": - - "Allure.SpecFlowPlugin/**" - - "Allure.SpecFlowPlugin.Tests/**" + - changed-files: + - any-glob-to-any-file: + - "Allure.Features/**" + - "Allure.SpecFlowPlugin/**" + - "Allure.SpecFlowPlugin.Tests/**" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index e0d99fc8..e6214b33 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,12 +1,12 @@ name: "Set theme labels" on: - - pull_request_target + - pull_request jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }}