From f22b7a6dc87a7ce80f2f628a9d960e3b7d8ae288 Mon Sep 17 00:00:00 2001 From: Glen Thomas Date: Thu, 16 Oct 2025 21:15:43 +0100 Subject: [PATCH] Remove empty lines from control-jobs-with-conditions --- .../choose-when-workflows-run/control-jobs-with-conditions.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 038468cf01f4..2d5cb82666a2 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,9 +23,7 @@ name: example-workflow on: [push] jobs: production-deploy: -{% raw %} - if: ${{ github.repository == 'octo-org/octo-repo-prod' }} -{% endraw %} + if: {% raw %}${{ github.repository == 'octo-org/octo-repo-prod' }}{% endraw %} runs-on: ubuntu-latest steps: - uses: {% data reusables.actions.action-checkout %}