From 61805f4923ac8ec481bd963b5d935a668e8a4d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20P=C3=B6schl?= Date: Sun, 15 Sep 2024 20:46:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20PR=20checks=20to=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr-labels.yaml | 14 ++++++++++++++ .github/workflows/pr-title.yaml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/pr-labels.yaml create mode 100644 .github/workflows/pr-title.yaml diff --git a/.github/workflows/pr-labels.yaml b/.github/workflows/pr-labels.yaml new file mode 100644 index 0000000..c51ed80 --- /dev/null +++ b/.github/workflows/pr-labels.yaml @@ -0,0 +1,14 @@ +name: PR label + +# yamllint disable-line rule:truthy +on: + pull_request_target: + types: + - opened + - labeled + - unlabeled + - synchronize + +jobs: + workflows: + uses: Poeschl-HomeAssistant-Addons/workflows/.github/workflows/pr-labels.yaml@main diff --git a/.github/workflows/pr-title.yaml b/.github/workflows/pr-title.yaml new file mode 100644 index 0000000..6874e79 --- /dev/null +++ b/.github/workflows/pr-title.yaml @@ -0,0 +1,14 @@ +name: PR title + +# yamllint disable-line rule:truthy +on: + pull_request: + types: + - opened + - labeled + - unlabeled + - synchronize + +jobs: + workflows: + uses: Poeschl-HomeAssistant-Addons/workflows/.github/workflows/pr-title.yaml@main