Skip to content

Commit 3874439

Browse files
authored
Fix example in control-jobs-with-conditions (#40878)
1 parent c885dc9 commit 3874439

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ name: example-workflow
2323
on: [push]
2424
jobs:
2525
production-deploy:
26+
{% raw %}
2627
if: ${{ github.repository == 'octo-org/octo-repo-prod' }}
28+
{% endraw %}
2729
runs-on: ubuntu-latest
2830
steps:
2931
- uses: {% data reusables.actions.action-checkout %}

0 commit comments

Comments
 (0)