GHA workflows are automatically executed on forks where they fail. This change prevents this (only for those workflows that are automatically triggered, e.g.: on push or schedule).
29 lines
892 B
YAML
29 lines
892 B
YAML
name: Deploy Docs
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main, '[0-9].[0-9].x' ]
|
|
tags: ['v[0-9].[0-9].[0-9]', 'v[0-9].[0-9].[0-9]-*']
|
|
permissions:
|
|
actions: write
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository_owner == 'spring-projects' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: docs-build
|
|
fetch-depth: 1
|
|
- name: Dispatch (partial build)
|
|
if: github.ref_type == 'branch'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD) -f build-refname=${{ github.ref_name }}
|
|
- name: Dispatch (full build)
|
|
if: github.ref_type == 'tag'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: gh workflow run deploy-docs.yml -r $(git rev-parse --abbrev-ref HEAD)
|