Skip to content

Commit

Permalink
run extension template ci always on main repo
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Feb 29, 2024
1 parent 59ad0e3 commit a7079a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ExtensionTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
linux:
name: Linux
if: ${{ vars.RUN_RENAME_TEST == 'true' }}
if: ${{ vars.RUN_RENAME_TEST == 'true' || github.repository == 'duckdb/extension-template' }}
runs-on: ubuntu-latest
container: ubuntu:18.04
strategy:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
macos:
name: MacOS
if: ${{ vars.RUN_RENAME_TEST == 'true' }}
if: ${{ vars.RUN_RENAME_TEST == 'true' || github.repository == 'duckdb/extension-template' }}
runs-on: macos-latest
strategy:
matrix:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
windows:
name: Windows
if: ${{ vars.RUN_RENAME_TEST == 'true' }}
if: ${{ vars.RUN_RENAME_TEST == 'true' || github.repository == 'duckdb/extension-template' }}
runs-on: windows-latest
strategy:
matrix:
Expand Down

0 comments on commit a7079a9

Please sign in to comment.