From c68325cca22f3788952e6b2ed6d93a649c5e1c33 Mon Sep 17 00:00:00 2001 From: Lars-Magnus Underhaug Date: Thu, 8 Aug 2024 14:13:16 +0200 Subject: [PATCH] JI-6504 Add reusable workflow trigger for translation validation --- .github/workflows/ci-workflows.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci-workflows.yml diff --git a/.github/workflows/ci-workflows.yml b/.github/workflows/ci-workflows.yml new file mode 100644 index 0000000..eabaccf --- /dev/null +++ b/.github/workflows/ci-workflows.yml @@ -0,0 +1,14 @@ +name: CI + +on: + workflow_dispatch: + pull_request: + branches: + - master + types: [opened, synchronize] # Triggers on PR open and commits to PR + +jobs: + ci: + uses: h5p/h5p-ci-workflows/.github/workflows/h5p-ci-workflow.yml@master + with: + run-translations: true \ No newline at end of file