Skip to content

Commit 8a113c1

Browse files
Merge branch 'main' into Azure-Security---Microsoft-Defender-for-Identity
2 parents f546766 + 3695c6f commit 8a113c1

File tree

6 files changed

+1759
-1281
lines changed

6 files changed

+1759
-1281
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Rebuild yarn.lock on Linux
2+
3+
on:
4+
workflow_dispatch: {} # run it manually from the Actions tab
5+
6+
permissions:
7+
contents: write # needed to push a branch/PR
8+
9+
jobs:
10+
rebuild:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Use Node 20
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
23+
- name: Install Yarn 1.x
24+
run: npm i -g [email protected]
25+
26+
- name: Clean lock & modules
27+
run: rm -rf node_modules yarn.lock
28+
29+
- name: Install (generate Linux lockfile)
30+
run: yarn install
31+
32+
- name: Create PR
33+
uses: peter-evans/create-pull-request@v6
34+
with:
35+
branch: fix/linux-lockfile
36+
commit-message: "chore: regenerate yarn.lock on Linux for CI compatibility"
37+
title: "chore: regenerate yarn.lock on Linux"
38+
body: |
39+
Regenerated lockfile on Linux to avoid platform-specific @swc/* entries.
40+
CI can keep using `yarn install --frozen-lockfile`.
41+
delete-branch: true

docs/search/query-assist.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
88

99
Query Assist enhances the query-building experience in Sumo Logic by providing real-time syntax suggestions, schema prompts, and partial query predictions. These enhancements simplify the process for users at all skill levels, making it easier to write accurate and efficient queries, enabling easier discovery of relevant fields, minimizing errors, and providing intelligent assistance for query creation. The suggestions that appear comply with the user's role-based access restrictions.
1010

11+
:::note
12+
By default, Query Assist will be enabled in the **Preferences** page. If it is not enabled, you can turn it on from the [Preferences page](#turn-off-autocomplete), or simply press **Control + Space** to activate it manually.
13+
:::
14+
1115
:::info
1216
Logs Query Assist is also supported in [Dashboards](/docs/dashboards) and [Scheduled Searches](/docs/alerts/scheduled-searches).
1317
:::

0 commit comments

Comments
 (0)