From ee88078135ce205fb9d3118061e73b7b466e4cbc Mon Sep 17 00:00:00 2001 From: Gee307 Date: Tue, 23 Dec 2025 15:20:00 +0530 Subject: [PATCH] Remove hard-coded organization in website build action --- .github/workflows/docs_build_and _deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs_build_and _deploy.yml b/.github/workflows/docs_build_and _deploy.yml index f24a625..50bb7d8 100644 --- a/.github/workflows/docs_build_and _deploy.yml +++ b/.github/workflows/docs_build_and _deploy.yml @@ -18,7 +18,7 @@ on: jobs: linting: # scheduled workflows should not run on forks - if: (${{ github.event_name == 'schedule' }} && ${{ github.repository_owner == 'neuroinformatics-unit' }} && ${{ github.ref == 'refs/heads/main' }}) || (${{ github.event_name != 'schedule' }}) + if: github.event_name != 'schedule' || github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: neuroinformatics-unit/actions/lint@v2