Apparently Dependabot can upgrade reusable GHA workflows as well.
So less burden on support and less stress from changes in those reusable workflows in `main`
(cherry picked from commit de58d8c942)
20 lines
327 B
YAML
20 lines
327 B
YAML
name: Deploy Docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*.x'
|
|
- main
|
|
tags:
|
|
- '**'
|
|
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
actions: write
|
|
|
|
jobs:
|
|
dispatch-docs-build:
|
|
if: github.repository_owner == 'spring-projects'
|
|
uses: spring-io/spring-github-workflows/.github/workflows/spring-dispatch-docs-build.yml@v3
|