Skip to content

Commit

Permalink
point workflow refs to main
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 10, 2024
1 parent 84c6a08 commit 2149ddb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:

jobs:
unit-tests:
uses: dbt-labs/dbt-adapters/.github/workflows/_unit-tests.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_unit-tests.yml@main
with:
package: "dbt-athena"
branch: ${{ inputs.branch }}
Expand All @@ -42,7 +42,7 @@ jobs:
publish-internal:
if: ${{ inputs.pypi-internal == true }}
needs: [unit-tests, integration-tests]
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-internal.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-internal.yml@main
with:
package: "dbt-athena"
deploy-to: ${{ inputs.deploy-to }}
Expand All @@ -52,7 +52,7 @@ jobs:
publish-pypi:
if: ${{ inputs.pypi-public == true }}
needs: [unit-tests, integration-tests]
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-pypi.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-pypi.yml@main
with:
package: "dbt-athena"
deploy-to: ${{ inputs.deploy-to }}
Expand All @@ -63,7 +63,7 @@ jobs:
# dbt-athena-community is hard pinned to dbt-athena to ensure they are the same
# this means we need to finish publishing dbt-athena before starting to build dbt-athena-community
needs: publish-pypi
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-pypi.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_publish-pypi.yml@main
with:
package: "dbt-athena-community"
deploy-to: ${{ inputs.deploy-to }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ concurrency:

jobs:
changelog-entry:
uses: dbt-labs/dbt-adapters/.github/workflows/_changelog-entry-check.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_changelog-entry-check.yml@main
with:
package: "dbt-athena"
issue: ${{ github.event.pull_request.number }}
pull-request: ${{ github.event.pull_request.number }}

code-quality:
uses: dbt-labs/dbt-adapters/.github/workflows/_code-quality.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_code-quality.yml@main
with:
branch: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand All @@ -30,7 +30,7 @@ jobs:
secrets: inherit

verify-builds:
uses: dbt-labs/dbt-adapters/.github/workflows/_verify-build.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_verify-build.yml@main
strategy:
matrix:
package: ["dbt-athena", "dbt-athena-community"]
Expand All @@ -44,7 +44,7 @@ jobs:
python-version: ${{ matrix.python-version }}

unit-tests:
uses: dbt-labs/dbt-adapters/.github/workflows/_unit-tests.yml@monorepo/shared-workflows
uses: dbt-labs/dbt-adapters/.github/workflows/_unit-tests.yml@main
strategy:
matrix:
package: ["dbt-athena", "dbt-athena-community"]
Expand Down

0 comments on commit 2149ddb

Please sign in to comment.