update hvac error handling (Open todo) #1415
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
name: Collection Docs | |
concurrency: | |
group: docs-pr-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened, closed] | |
env: | |
SURGE_PR_SITE: community-hashi-vault-pr${{ github.event.number }}.surge.sh | |
SURGE_MAIN_SITE: community-hashi-vault-main.surge.sh | |
GHP_BASE_URL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }} | |
jobs: | |
# this job builds with the most strict options to ensure full compliance | |
# does not use the collection's committed sphinx-init output | |
validate-docs: | |
permissions: | |
contents: read | |
name: Validate Ansible Docs | |
if: github.event.action != 'closed' | |
uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-push.yml@main | |
with: | |
artifact-upload: false | |
init-lenient: false | |
init-fail-on-error: true | |
build-ref: refs/pull/${{ github.event.number }}/merge | |
# this job builds for the PR comparison and publish, so use the most lenient options | |
# to give the best possibility of producing a publishable build; the strict build will | |
# still result in a failure for the PR as a whole, but for review a partial docsite is | |
# better than none. | |
# This uses the committed sphinx-init output which already has the lenient options. | |
build-docs: | |
permissions: | |
contents: read | |
name: Build Ansible Docs | |
uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-pr.yml@main | |
with: | |
init-dest-dir: docs/preview | |
render-file-line: '> * `$<status>` [$<path_tail>](https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/pr/${{ github.event.number }}/$<path_tail>)' | |
publish-docs-surge: | |
# for now we won't run this on forks | |
if: github.repository == 'ansible-collections/community.hashi_vault' | |
permissions: | |
contents: read | |
needs: [build-docs] | |
name: Publish Ansible Docs | |
uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-publish-surge.yml@main | |
with: | |
artifact-name: ${{ needs.build-docs.outputs.artifact-name }} | |
surge-site-name: community-hashi-vault-pr${{ github.event.number }}.surge.sh | |
action: ${{ (github.event.action == 'closed' || needs.build-docs.outputs.changed != 'true') && 'teardown' || 'publish' }} | |
secrets: | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
publish-docs-gh-pages: | |
# for now we won't run this on forks | |
if: github.repository == 'ansible-collections/community.hashi_vault' | |
permissions: | |
contents: write | |
needs: [build-docs] | |
name: Publish Ansible Docs | |
uses: ansible-community/github-docs-build/.github/workflows/_shared-docs-build-publish-gh-pages.yml@main | |
with: | |
artifact-name: ${{ needs.build-docs.outputs.artifact-name }} | |
action: ${{ (github.event.action == 'closed' || needs.build-docs.outputs.changed != 'true') && 'teardown' || 'publish' }} | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
comment: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
needs: [build-docs, publish-docs-gh-pages] | |
name: PR comments | |
steps: | |
- name: PR comment | |
env: | |
PR_SITE_URL: https://${{ env.SURGE_PR_SITE }} | |
MAIN_SITE_URL: https://${{ env.SURGE_MAIN_SITE }} | |
uses: ansible-community/github-docs-build/actions/ansible-docs-build-comment@main | |
with: | |
body-includes: '## Docs Build' | |
reactions: heart | |
action: ${{ needs.build-docs.outputs.changed != 'true' && 'remove' || '' }} | |
on-closed-body: | | |
## Docs Build 📝 | |
This PR is closed and any previously published docsite has been unpublished. | |
on-merged-body: | | |
## Docs Build 📝 | |
Thank you for contribution!✨ | |
This PR has been merged and the docs are now incorporated into `main`: | |
${{ env.GHP_BASE_URL }}/branch/main | |
body: | | |
## Docs Build 📝 | |
Thank you for contribution!✨ | |
The docs for **this PR** have been published here: | |
${{ env.GHP_BASE_URL }}/pr/${{ github.event.number }} | |
You can compare to the docs for the `main` branch here: | |
${{ env.GHP_BASE_URL }}/branch/main | |
The docsite for **this PR** is also available for download as an artifact from this run: | |
${{ needs.build-docs.outputs.artifact-url }} | |
File changes: | |
${{ needs.build-docs.outputs.diff-files-rendered }} | |
${{ needs.build-docs.outputs.diff-rendered }} |