This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 2ca4423ea Skip Hugo Site workflow on forks (#3056)
2ca4423ea is described below

commit 2ca4423eae07a631cf1de3be38b1b77605fc9eda
Author: Christopher Lambert <[email protected]>
AuthorDate: Tue Nov 18 10:49:40 2025 +0100

    Skip Hugo Site workflow on forks (#3056)
    
    Forks usually don't have the "versioned-docs" tag and thus PRs against 
forks or rebasing the main branch on a fork currently always causes workflow 
failures.
---
 .github/workflows/site.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml
index 21bebaf9e..81322367f 100644
--- a/.github/workflows/site.yml
+++ b/.github/workflows/site.yml
@@ -27,6 +27,7 @@ jobs:
   site:
 
     runs-on: ubuntu-latest
+    if: github.repository == 'apache/polaris'
 
     steps:
       - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

Reply via email to