Browse Source

Prevent execution of Antora jobs on forks

Closes gh-34083
6.1.x
Stéphane Nicoll 1 year ago
parent
commit
68368621f3
  1. 2
      .github/workflows/deploy-docs.yml

2
.github/workflows/deploy-docs.yml

@ -15,7 +15,7 @@ permissions: @@ -15,7 +15,7 @@ permissions:
jobs:
build:
name: Dispatch docs deployment
if: github.repository_owner == 'spring-projects'
if: ${{ github.repository == 'spring-projects/spring-framework' }}
runs-on: ubuntu-latest
steps:
- name: Check out code

Loading…
Cancel
Save