From fff4c16b7bcc3ea92b80f043d18fa01b1f101143 Mon Sep 17 00:00:00 2001 From: Glen Thomas Date: Thu, 16 Oct 2025 08:24:01 +0100 Subject: [PATCH] Fix example in control-jobs-with-conditions --- .../choose-when-workflows-run/control-jobs-with-conditions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md b/content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md index 4e933c9d3ab1..038468cf01f4 100644 --- a/content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md +++ b/content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md @@ -23,7 +23,9 @@ name: example-workflow on: [push] jobs: production-deploy: +{% raw %} if: ${{ github.repository == 'octo-org/octo-repo-prod' }} +{% endraw %} runs-on: ubuntu-latest steps: - uses: {% data reusables.actions.action-checkout %}