Skip to content

Commit

Permalink
Edit github workflow for documentation previews (#2612) (#2615)
Browse files Browse the repository at this point in the history
(cherry picked from commit 37d19c5)

Co-authored-by: Lisa Cawley <lcawley@elastic.co>
  • Loading branch information
mergify[bot] and lcawl committed Dec 21, 2023
1 parent b74fc2d commit f53a4fd
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions .github/workflows/docs-preview-links.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
name: Docs Preview Links
name: docs-preview

on:
pull_request_target:
types: [opened]
paths:
- '**.asciidoc'
permissions:
pull-requests: write

jobs:
doc-preview:
doc-preview-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
name: Add doc preview links
- uses: elastic/docs/.github/actions/docs-preview@master
with:
script: |
const pr = context.payload.pull_request;
const comment = `Documentation preview:
- ✨ [Changed pages](https://${context.repo.repo}_${pr.number}.docs-preview.app.elstc.co/diff)`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment,
});
github-token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.event.repository.name }}
preview-path: 'guide/index.html'
pr: ${{ github.event.pull_request.number }}

0 comments on commit f53a4fd

Please sign in to comment.