From 6818023b11264778cc552f516261f56587c01d96 Mon Sep 17 00:00:00 2001 From: Joe Peeples Date: Wed, 6 Dec 2023 09:26:47 -0500 Subject: [PATCH] Add Buildkite preview links to PRs (#4390) * Create new action * Fix preview-path for Security docs --- .github/workflows/docs-preview.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/docs-preview.yml diff --git a/.github/workflows/docs-preview.yml b/.github/workflows/docs-preview.yml new file mode 100644 index 0000000000..56a0cf15a5 --- /dev/null +++ b/.github/workflows/docs-preview.yml @@ -0,0 +1,19 @@ + 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/security/master/index.html' + pr: ${{ github.event.pull_request.number }}