TELCODOCS-2082 VP Quick start guide redo #370
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target | |
# This way this CI job runs in the context of the base of the pull request and so has access to the PAT secret | |
# to be able to comment on the PR | |
pull_request_target: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: mshick/add-pr-comment@v2 | |
with: | |
message: | | |
This is an automated message: | |
You can preview this docs PR at http://${{ github.event.number }}.docs-pr.validatedpatterns.io | |
Note that they get generated every five minutes, so please wait a bit. | |
repo-token: ${{ secrets.DOCS_PR_TOKEN }} |