diff --git a/.github/labeler.yml b/.github/labeler.yml index 935847b..465ebb3 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,13 +1,19 @@ -docs: - - "docs/**" - - "README.md" - - "README-*.md" +documentation: + - changed-files: + - any-glob-to-any-file: + - "docs/**" + - "README.md" + - "README-*.md" tests: - - "tests/**" + - changed-files: + - any-glob-to-any-file: + - "tests/**" ci: - - ".github/**" - - ".pre-commit-config.yaml" - - ".readthedocs.yaml" - - "codedev.yml" + - changed-files: + - any-glob-to-any-file: + - ".github/**" + - ".pre-commit-config.yaml" + - ".readthedocs.yaml" + - "codedev.yml" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 62da9d5..9043ebf 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -10,6 +10,9 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - uses: actions/labeler@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }}