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 d5ca429035a2..4e933c9d3ab1 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,7 @@ name: example-workflow on: [push] jobs: production-deploy: - if: github.repository == 'octo-org/octo-repo-prod' + if: ${{ github.repository == 'octo-org/octo-repo-prod' }} runs-on: ubuntu-latest steps: - uses: {% data reusables.actions.action-checkout %}