Skip to content

Commit

Permalink
[CI][DOCS] Adds GitHub Action for docs validation comment
Browse files Browse the repository at this point in the history
  • Loading branch information
picandocodigo committed Jun 3, 2024
1 parent 3576ac7 commit c38be0c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docs-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: docs-preview

on:
pull_request_target:
types: [opened]

permissions:
pull-requests: write

jobs:
doc-preview-pr:
runs-on: ubuntu-latest
steps:
- uses: elastic/docs/.github/actions/docs-preview@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.event.repository.name }}
preview-path: 'guide/en/elasticsearch/client/ruby-api/index.html'
pr: ${{ github.event.pull_request.number }}

0 comments on commit c38be0c

Please sign in to comment.