From 8041173264715df5926d8e3d3d020439060fe400 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Wed, 11 Jun 2025 12:06:44 -0400 Subject: [PATCH] Create pr-validation.yml --- .github/workflows/pr-validation.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pr-validation.yml diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 0000000..3797c32 --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,19 @@ +name: PR Validation +on: + pull_request: + types: [opened] + +permissions: + contents: read + +jobs: + pr-validation: + permissions: + contents: read + pull-requests: write + runs-on: ['self-hosted', 'pi'] + steps: + - uses: TimonVS/pr-labeler-action@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + configuration-path: .github/configs/pr-labeler-configuration.yml