Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 0627aa2

Browse files
Update internal release naming and arguments (#1263)
* use dynamic schema in test_grant_access_to.py * use dynamic schema in test_grant_access_to.py * revert setup * Update internal release naming and arguments --------- Co-authored-by: Mike Alfare <[email protected]>
1 parent b828c30 commit 0627aa2

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/release-internal.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@
1010
#
1111
# Manual trigger.
1212

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

1516
on:
1617
workflow_dispatch:
1718
inputs:
18-
version_number:
19-
description: "The release version number (i.e. 1.0.0b1)"
20-
type: string
21-
required: true
2219
ref:
2320
description: "The ref (sha or branch name) to use"
2421
type: string
@@ -29,6 +26,11 @@ on:
2926
type: string
3027
default: "python -c \"import dbt.adapters.bigquery\""
3128
required: true
29+
skip_tests:
30+
description: "Should the tests be skipped? (default to false)"
31+
type: boolean
32+
required: true
33+
default: false
3234

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

4345
with:
44-
version_number: "${{ inputs.version_number }}"
4546
package_test_command: "${{ inputs.package_test_command }}"
4647
dbms_name: "bigquery"
4748
ref: "${{ inputs.ref }}"
49+
skip_tests: "${{ inputs.skip_tests }}"
4850

4951
secrets: "inherit"

0 commit comments

Comments
 (0)