From c785b24596694bd0270904f6ff029b90899c8fc6 Mon Sep 17 00:00:00 2001 From: Joe Peeples Date: Thu, 7 Dec 2023 12:09:10 -0500 Subject: [PATCH] [8.0] Add Buildkite preview links to PRs (#4390) | Delete docs-preview-links.yml (#4406) (#4430) * Add Buildkite preview links to PRs (#4390) * Create new action * Fix preview-path for Security docs * Delete docs-preview-links.yml (#4406) --- .github/workflows/docs-preview-links.yml | 25 ------------------------ .github/workflows/docs-preview.yml | 19 ++++++++++++++++++ 2 files changed, 19 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/docs-preview-links.yml create mode 100644 .github/workflows/docs-preview.yml diff --git a/.github/workflows/docs-preview-links.yml b/.github/workflows/docs-preview-links.yml deleted file mode 100644 index 03711cfa6b..0000000000 --- a/.github/workflows/docs-preview-links.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Docs Preview Links - -on: - pull_request_target: - types: [opened] - -jobs: - doc-preview: - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - name: Add doc preview links - with: - script: | - const pr = context.payload.pull_request; - const comment = `Documentation previews: - - ✨ [HTML diff](https://${context.repo.repo}_${pr.number}.docs-preview.app.elstc.co/diff) - - 📙 [Elastic Security Guide](https://${context.repo.repo}_${pr.number}.docs-preview.app.elstc.co/guide/en/security/master/index.html)`; - - github.rest.issues.createComment({ - issue_number: context.issue.number, - owner: context.repo.owner, - repo: context.repo.repo, - body: comment, - }); 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 }}