From bb25fccb0a59b08e37437fa101fc444c0cda3ad6 Mon Sep 17 00:00:00 2001 From: cloudOpsgenius Date: Fri, 18 Jul 2025 00:27:47 +0530 Subject: [PATCH] feat: Add pr-check.yml workflow --- .github/workflows/pr-check.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/pr-check.yml diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml new file mode 100644 index 0000000..ab3a1da --- /dev/null +++ b/.github/workflows/pr-check.yml @@ -0,0 +1,29 @@ + +name: 'PR Validation' + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened + +jobs: + pr-validation: + uses: clouddrove/github-shared-workflows/.github/workflows/pr_checks.yml@master + secrets: inherit + with: + types: | + fix + feat + docs + ci + chore + test + refactor + style + perf + build + revert + checkLabels: true # Set to false to disable label checking \ No newline at end of file