Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ on:
push:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' && github.sha || '' }}
cancel-in-progress: true

jobs:
duckdb-stable-build:
name: Build extension binaries
Expand All @@ -19,7 +17,9 @@ jobs:
duckdb_version: v1.4.3
ci_tools_version: v1.4.3
extension_name: quack

if: (github.event_name != 'push' || !contains(join(github.event.commits.*.message, ' '), '[SKIP_CI] bump to')) && (github.event_name != 'pull_request' || !contains(github.event.pull_request.title, '[SKIP_CI] bump to'))
env:
SKIP_CI_PATTERN: '[SKIP_CI] bump to'
code-quality-check:
name: Code Quality Check
uses: duckdb/extension-ci-tools/.github/workflows/_extension_code_quality.yml@v1.4.3
Expand All @@ -28,3 +28,6 @@ jobs:
ci_tools_version: v1.4.3
extension_name: quack
format_checks: 'format;tidy'
if: (github.event_name != 'push' || !contains(join(github.event.commits.*.message, ' '), '[SKIP_CI] bump to')) && (github.event_name != 'pull_request' || !contains(github.event.pull_request.title, '[SKIP_CI] bump to'))
env:
SKIP_CI_PATTERN: '[SKIP_CI] bump to'
Loading