29ed4dd724
Bumps [spring-io/spring-doc-actions](https://github.com/spring-io/spring-doc-actions) from 0.0.20 to 0.0.22. - [Commits](https://github.com/spring-io/spring-doc-actions/compare/e28269199d1d27975cf7f65e16d6095c555b3cd0...415e2b11a766ba64799fffb5c97a4f7e17f677cf) --- updated-dependencies: - dependency-name: spring-io/spring-doc-actions dependency-version: 0.0.22 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
993 B
YAML
36 lines
993 B
YAML
name: Update Antora UI Spring
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 10 * * *' # Once per day at 10am UTC
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
contents: write
|
|
|
|
jobs:
|
|
update-antora-ui-spring:
|
|
runs-on: ubuntu-latest
|
|
name: Update on Supported Branches
|
|
strategy:
|
|
matrix:
|
|
branch: [ '6.5.x', '7.0.x', 'main' ]
|
|
steps:
|
|
- uses: spring-io/spring-doc-actions/update-antora-spring-ui@415e2b11a766ba64799fffb5c97a4f7e17f677cf
|
|
name: Update
|
|
with:
|
|
docs-branch: ${{ matrix.branch }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
antora-file-path: 'docs/antora-playbook.yml'
|
|
update-antora-ui-spring-docs-build:
|
|
runs-on: ubuntu-latest
|
|
name: Update on docs-build
|
|
steps:
|
|
- uses: spring-io/spring-doc-actions/update-antora-spring-ui@415e2b11a766ba64799fffb5c97a4f7e17f677cf
|
|
name: Update
|
|
with:
|
|
docs-branch: 'docs-build'
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|