Skip to content

Commit bf77149

Browse files
authored
Merge branch 'main' into landing-page/get-started-cta
2 parents c1946bd + 9b0165c commit bf77149

882 files changed

Lines changed: 27365 additions & 3914 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cursorrules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CLAUDE.md

.github/copilot-instructions.md

Lines changed: 0 additions & 193 deletions
This file was deleted.

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../CLAUDE.md

.github/workflows/deploy-mcp-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
zip -j ../function.zip bootstrap
6060
6161
- name: Configure AWS credentials
62-
uses: aws-actions/configure-aws-credentials@v4
62+
uses: aws-actions/configure-aws-credentials@v5
6363
with:
6464
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/elastic-docs-v3-mcp-deployer-${{ inputs.environment }}
6565
aws-region: ${{ env.AWS_REGION }}

.github/workflows/preview-build.yml

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ on:
6363
type: boolean
6464
default: false
6565
required: false
66-
66+
include-paths:
67+
description: 'Paths to include for Vale linting (multi-line). Only files matching these paths will be linted.'
68+
type: string
69+
default: ''
70+
required: false
6771

6872
permissions:
6973
contents: read
@@ -326,19 +330,21 @@ jobs:
326330
327331
- name: Bootstrap Action Workspace
328332
if: >
329-
env.MATCH == 'true'
333+
env.MATCH == 'true'
330334
&& github.repository == 'elastic/docs-builder'
331335
&& steps.deployment.outputs.result
336+
&& (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
332337
uses: elastic/docs-builder/.github/actions/bootstrap@main
333338

334339
- name: 'Validate redirect rules'
335340
if: >
336341
env.MATCH == 'true'
337342
&& github.repository == 'elastic/docs-builder'
343+
&& (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
338344
&& (
339345
steps.deployment.outputs.result
340346
|| (
341-
needs.check.outputs.any_modified == 'true'
347+
needs.check.outputs.any_modified == 'true'
342348
&& github.event_name == 'merge_group'
343349
)
344350
)
@@ -368,6 +374,7 @@ jobs:
368374
env.MATCH == 'true'
369375
&& github.repository == 'elastic/docs-builder'
370376
&& steps.deployment.outputs.result
377+
&& (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
371378
run: |
372379
dotnet run --project src/tooling/docs-builder -- --strict --path-prefix "${PATH_PREFIX}"
373380
@@ -415,11 +422,12 @@ jobs:
415422
&& (
416423
!cancelled()
417424
&& github.repository == 'elastic/docs-builder'
418-
&& steps.internal-docs-build.outputs.skip != 'true'
425+
&& (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
426+
&& steps.internal-docs-build.outputs.skip != 'true'
419427
&& (
420428
steps.deployment.outputs.result
421429
|| (
422-
needs.check.outputs.any_modified == 'true'
430+
needs.check.outputs.any_modified == 'true'
423431
&& github.event_name == 'merge_group'
424432
)
425433
)
@@ -449,14 +457,15 @@ jobs:
449457
if: >
450458
env.MATCH == 'true'
451459
&& (
452-
!cancelled()
460+
!cancelled()
453461
&& github.repository == 'elastic/docs-builder'
462+
&& (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
454463
&& steps.internal-docs-build.outputs.skip != 'true'
455464
&& steps.internal-docs-build.outcome != 'skipped'
456465
&& (
457-
steps.deployment.outputs.result
466+
steps.deployment.outputs.result
458467
|| (
459-
needs.check.outputs.any_modified == 'true'
468+
needs.check.outputs.any_modified == 'true'
460469
&& github.event_name == 'merge_group'
461470
)
462471
)
@@ -686,6 +695,7 @@ jobs:
686695
uses: elastic/vale-rules/lint@main
687696
with:
688697
files: ${{ needs.check.outputs.all_changed_files }}
698+
include-paths: ${{ inputs.include-paths }}
689699
- name: Post Vale Results
690700
uses: elastic/vale-rules/report@main
691701
with:

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
pull-requests: read
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0
21+
- uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0
2222
env:
2323
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "This workflow is only allowed to run on the main branch."
2727
exit 1
2828
fi
29-
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0
29+
- uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0
3030
id: release-drafter
3131
env:
3232
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)