From f8fc616e5667adee43e6d5118c2018126ab082d7 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 27 Jul 2023 14:41:58 +0200 Subject: [PATCH] tools/github actions: make build workflow reusable by other workflows - https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_call - https://github.com/awesome-selfhosted/awesome-selfhosted-data/actions/runs/5680604483 - error parsing called workflow: workflow is not reusable as it is missing a on.workflow_call trigger --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 42b13f30be..dcb8e82eed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: push: branches: [ master ] workflow_dispatch: + workflow_call: concurrency: group: build-${{ github.ref }}