feature: add flag omitIdTokenHintOnLogout in OIDC config #3185
Workflow file for this run
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: Generate API docs | |
| on: | |
| pull_request: | |
| branches: [ develop ] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| generate-api-docs: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: cfidentity/uaa-generate-docs | |
| volumes: | |
| - ${{ github.workspace }}:/root/uaa | |
| options: --privileged --tty --interactive --shm-size=1G | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v6 | |
| - name: Generate https://docs.cloudfoundry.org/api/uaa/ | |
| run: /root/uaa/scripts/generate-docs.sh | |
| - name: Documentation Upload | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Docs folder | |
| path: /root/uaa/uaa/build/docs/version/ |