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 }}