You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
993 B
35 lines
993 B
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: [ 'main', '1.5.x', '1.4.x' ] |
|
steps: |
|
- uses: spring-io/spring-doc-actions/update-antora-spring-ui@e28269199d1d27975cf7f65e16d6095c555b3cd0 |
|
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@e28269199d1d27975cf7f65e16d6095c555b3cd0 |
|
name: Update |
|
with: |
|
docs-branch: 'docs-build' |
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|