Skip to content

Commit a1f51fd

Browse files
committed
format
1 parent 37abac6 commit a1f51fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/docs-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
runs-on: ubuntu-latest
3232
# Only run on release commits (chore: release) or manual triggers
3333
if: >-
34-
github.event_name == 'workflow_dispatch' ||
35-
(startsWith(github.event.head_commit.message, 'chore:') && contains(github.event.head_commit.message, 'release'))
34+
github.event_name == 'workflow_dispatch' || (startsWith(github.event.head_commit.message, 'chore:') && contains(github.event.head_commit.message, 'release'))
35+
3636
3737
steps:
3838
- name: Checkout instantsearch

.github/workflows/release-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Trigger a release
22

33
on:
44
workflow_run:
5-
workflows: ["CI"]
5+
workflows: ['CI']
66
types:
77
- completed
88
branches:

.github/workflows/scheduled-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Scheduled E2E Tests
33
on:
44
schedule:
55
# Runs on a schedule (configure your desired schedule)
6-
- cron: '0 2 * * *' # Daily at 2 AM UTC
7-
workflow_dispatch: # Allow manual trigger
6+
- cron: '0 2 * * *' # Daily at 2 AM UTC
7+
workflow_dispatch: # Allow manual trigger
88

99
concurrency:
1010
group: scheduled-e2e

0 commit comments

Comments
 (0)