1
0
mirror of synced 2025-12-19 18:10:59 -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]
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 %}