From d5a2d6d018daffc5a8a2f6ac9cec20e3100df7ec Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Tue, 17 Dec 2024 18:32:40 -0500 Subject: [PATCH] Fix pull requests workflow (#769) --- .github/workflows/pull-request-checks.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml index 5c59171f..b202ef48 100644 --- a/.github/workflows/pull-request-checks.yml +++ b/.github/workflows/pull-request-checks.yml @@ -15,6 +15,7 @@ jobs: with: package: "dbt-athena" pull-request: ${{ github.event.pull_request.number }} + secrets: inherit code-quality: uses: dbt-labs/dbt-adapters/.github/workflows/_code-quality.yml@main @@ -22,16 +23,10 @@ jobs: branch: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} - changelog: - uses: dbt-labs/actions/.github/workflows/changelog-existence.yml@main - with: - changelog_comment: 'Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-adapters/blob/main/CONTRIBUTING.md#adding-changelog-entry).' - skip_label: 'Skip Changelog' - secrets: inherit - verify-builds: uses: dbt-labs/dbt-adapters/.github/workflows/_verify-build.yml@main strategy: + fail-fast: false matrix: package: ["dbt-athena", "dbt-athena-community"] os: [ubuntu-22.04] @@ -46,6 +41,7 @@ jobs: unit-tests: uses: dbt-labs/dbt-adapters/.github/workflows/_unit-tests.yml@main strategy: + fail-fast: false matrix: package: ["dbt-athena", "dbt-athena-community"] os: [ubuntu-22.04] @@ -60,6 +56,7 @@ jobs: integration-tests: uses: ./.github/workflows/_integration-tests.yml strategy: + fail-fast: false matrix: package: ["dbt-athena", "dbt-athena-community"] os: [ubuntu-22.04]