From: Sebastián Ramírez Date: Tue, 13 Aug 2024 02:39:05 +0000 (-0500) Subject: 👷 Add GitHub Action labeler (#1068) X-Git-Tag: 0.0.22~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86f6eeea190f381868eeb2bee5fc91d2f6bf97b9;p=thirdparty%2Ffastapi%2Fsqlmodel.git 👷 Add GitHub Action labeler (#1068) --- diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..f4ee6649 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,15 @@ +docs: + - changed-files: + - any-glob-to-any-file: + - docs/**/* + - docs_src/**/* + +internal: + - changed-files: + - any-glob-to-any-file: + - .github/**/* + - scripts/**/* + - .gitignore + - .pre-commit-config.yaml + - pdm_build.py + - requirements*.txt diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000..9cbdfda2 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,12 @@ +name: Pull Request Labeler +on: + pull_request_target: + +jobs: + labeler: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v5