Fix: Workflow syntax (#3002)

This commit is contained in:
Mr. RB
2025-06-19 07:39:35 +05:30
committed by GitHub
parent 2120a5317e
commit 96389d8f83
4 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ jobs:
trigger-on-command:
if: >
github.event_name == 'workflow_dispatch' ||
(github.event.issue.pull_request && contains(github.event.comment.body, ".build-cli"))
(github.event.issue.pull_request && contains(github.event.comment.body, '.build-cli'))
name: Trigger on ".build-cli" PR comment
runs-on: ubuntu-latest
outputs:

View File

@@ -26,7 +26,7 @@ jobs:
trigger-on-command:
if: >
github.event_name == 'workflow_dispatch' ||
(github.event.issue.pull_request && contains(github.event.comment.body, ".bundle-intel"))
(github.event.issue.pull_request && contains(github.event.comment.body, '.bundle-intel'))
name: Trigger on ".bundle-intel" PR comment
runs-on: ubuntu-latest
outputs:

View File

@@ -29,7 +29,7 @@ jobs:
trigger-on-command:
if: >
github.event_name == 'workflow_dispatch' ||
(github.event.issue.pull_request && contains(github.event.comment.body, ".bundle-windows"))
(github.event.issue.pull_request && contains(github.event.comment.body, '.bundle-windows'))
name: Trigger on ".bundle-windows" PR comment
runs-on: ubuntu-latest
outputs:

View File

@@ -26,7 +26,7 @@ jobs:
trigger-on-command:
if: >
github.event_name == 'workflow_dispatch' ||
(github.event.issue.pull_request && contains(github.event.comment.body, ".bundle"))
(github.event.issue.pull_request && contains(github.event.comment.body, '.bundle'))
name: Trigger on ".bundle" PR comment
runs-on: ubuntu-latest
outputs: