Skip to content

Commit ab3e689

Browse files
authored
Merge pull request #58050 from github/repo-sync
Repo sync
2 parents 1d656a9 + de242a5 commit ab3e689

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

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

0 commit comments

Comments
 (0)