docs(readme): clarify that Apiman 4 is WIP #1
This file contains hidden or 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: Trigger rebuild and redeployment of Apiman docs website | |
on: | |
push: | |
branches: [ master, 3.x, 2.x ] # Put all branches we want to track docs for here. | |
paths: | |
- 'docs/**' | |
workflow_dispatch: | |
jobs: | |
sendRebuildDispatchEvent: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send rebuild-apiman-antora-docs repository dispatch event to apiman/apiman-docs to trigger the Apiman Antora docs to be rebuilt and redeployed. | |
uses: peter-evans/repository-dispatch@v1.1.3 | |
with: | |
token: ${{ secrets.REPO_DISPATCH_ACCESS_TOKEN }} | |
repository: apiman/apiman-docs | |
event-type: rebuild-apiman-antora-docs | |