From 9cf9ff2b85abd64d5c9bb46deafd9ab6000ceb62 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 29 Jul 2023 12:17:01 +0400 Subject: [PATCH] Call contributed-recipes check after docker build --- .github/workflows/contributed-recipes.yml | 1 + .github/workflows/docker.yml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/contributed-recipes.yml b/.github/workflows/contributed-recipes.yml index 804c9901f0..8210e25efa 100644 --- a/.github/workflows/contributed-recipes.yml +++ b/.github/workflows/contributed-recipes.yml @@ -16,6 +16,7 @@ on: - ".github/workflows/contributed-recipes.yml" - "docs/using/recipe_code/" workflow_dispatch: + workflow_call: jobs: test-recipes: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d6eec49920..8d6a05f496 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -364,3 +364,8 @@ jobs: if: github.repository == 'jupyter/docker-stacks' permissions: contents: write + + contributed-recipes: + uses: ./.github/workflows/contributed-recipes.yml + needs: [merge-tags] + if: github.repository == 'jupyter/docker-stacks' && (github.ref == 'refs/heads/main' || github.event_name == 'schedule')