Skip to content

Commit

Permalink
Merge branch 'main' into catalog_enable_stats
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Jun 20, 2024
2 parents 4c014d7 + e5b28d6 commit 1a734c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,12 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
filters: |
snowflake:
- '.github/**/*.yml'
- '.github/**/*.sh'
- 'dbt/**'
- 'tests/**'
- 'dev-requirements.txt'
- '*.py'
- name: Generate integration test matrix
id: generate-matrix
uses: actions/github-script@v7
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/release-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,12 @@
#
# Manual trigger.

name: "Release internal patch"
name: "Release to Cloud"
run-name: "Release to Cloud off of ${{ inputs.ref }}"

on:
workflow_dispatch:
inputs:
version_number:
description: "The release version number (i.e. 1.0.0b1)"
type: string
required: true
ref:
description: "The ref (sha or branch name) to use"
type: string
Expand All @@ -29,6 +26,11 @@ on:
type: string
default: "python -c \"import dbt.adapters.snowflake\""
required: true
skip_tests:
description: "Should the tests be skipped? (default to false)"
type: boolean
required: true
default: false

defaults:
run:
Expand All @@ -41,9 +43,9 @@ jobs:
uses: "dbt-labs/dbt-release/.github/workflows/internal-archive-release.yml@main"

with:
version_number: "${{ inputs.version_number }}"
package_test_command: "${{ inputs.package_test_command }}"
dbms_name: "snowflake"
ref: "${{ inputs.ref }}"
skip_tests: "${{ inputs.skip_tests }}"

secrets: "inherit"

0 comments on commit 1a734c4

Please sign in to comment.