Skip to content

Commit

Permalink
Update name of core branch and add name input
Browse files Browse the repository at this point in the history
  • Loading branch information
gshank committed Jul 22, 2024
1 parent 89d89d3 commit f7c16b5
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Integration Tests

run-name: ${{ inputs.name }} by @${{ github.actor }}

on:
push:
branches:
Expand All @@ -13,23 +15,33 @@ on:
type: string
required: false
default: "main"
core_branch:
dbt_core_branch:
description: "The branch of dbt-core to use"
type: string
required: false
default: "main"
name:
description: "name to associate with run"
required: false
type: string
default: "Adapter Integration Tests"
workflow_call:
inputs:
dbt_adapters_branch:
description: "The branch of dbt-adapters to use"
type: string
required: false
default: "main"
core_branch:
dbt_core_branch:
description: "The branch of dbt-core to use"
type: string
required: false
default: "main"
name:
description: "name to associate with run"
required: false
type: string
default: "Adapter Integration Tests"

permissions: read-all

Expand Down Expand Up @@ -74,7 +86,7 @@ jobs:
run: |
./.github/scripts/update_dev_packages.sh \
${{ inputs.dbt_adapters_branch }} \
${{ inputs.core_branch }}
${{ inputs.dbt_core_branch }}
- name: Setup postgres
run: psql -f ./scripts/setup_test_database.sql
Expand Down

0 comments on commit f7c16b5

Please sign in to comment.