From 0eec65a476dbbe4500ad3c6ee9d05262ce2f392c Mon Sep 17 00:00:00 2001 From: airthings-atlantis Date: Wed, 11 Dec 2024 11:08:50 +0000 Subject: [PATCH] Managed by Terraform, updates managed through: https://github.com/Airthings/kotlin-libraries --- .github/workflows/label.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 00000000..d936f4cd --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,14 @@ +name: Label Checker +on: + pull_request: + types: [opened, synchronize, labeled, unlabeled, ready_for_review, reopened, edited, reopened] + +jobs: + check_labels: + name: Check labels + runs-on: ubuntu-latest + steps: + - uses: docker://agilepathway/pull-request-label-checker:latest + with: + one_of: major,minor,enhancement,patch,auto-update,fix,bugfix,bug,hotfix,no-release + repo_token: ${{ secrets.GITHUB_TOKEN }}