From a340c7152bba3e200525be9c6cac76d160819d76 Mon Sep 17 00:00:00 2001 From: Michael Rademaker Date: Wed, 6 Aug 2025 11:40:11 +0200 Subject: [PATCH] ci: add PR and manual workflow triggers for CI pipeline. openremote/openremote#16 --- .github/workflows/ci_cd.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 8408cb3..fac8bbd 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -8,6 +8,14 @@ on: tags-ignore: - '*.*' + # PR + pull_request: + branches: + - 'main' + + # Manual trigger + workflow_dispatch: + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true