1
0
mirror of synced 2025-12-22 19:34:15 -05:00

Use curly braces in if condition (#40865)

Co-authored-by: Sharra-writes <sharra-writes@github.com>
This commit is contained in:
Glen Thomas
2025-10-15 21:55:49 +01:00
committed by GitHub
parent 452b1dcdae
commit dfad998648

View File

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