This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Add triage workflow and labels to new issues #102
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Pull request checks" | ||
| on: | ||
| pull_request_target: | ||
| types: [opened, reopened, synchronize, labeled, unlabeled] | ||
| # only run this once per PR at a time | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.number }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| changelog-entry: | ||
| uses: dbt-labs/dbt-adapters/.github/workflows/_changelog-entry-check.yml@main | ||
| 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 | ||
| with: | ||
| branch: ${{ github.event.pull_request.head.ref }} | ||
| repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
| 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] | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
| with: | ||
| package: ${{ matrix.package }} | ||
| branch: ${{ github.event.pull_request.head.ref }} | ||
| repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
| os: ${{ matrix.os }} | ||
| python-version: ${{ matrix.python-version }} | ||
| 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] | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
| with: | ||
| package: ${{ matrix.package }} | ||
| branch: ${{ github.event.pull_request.head.ref }} | ||
| repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
| os: ${{ matrix.os }} | ||
| python-version: ${{ matrix.python-version }} | ||
| integration-tests: | ||
| uses: ./.github/workflows/_integration-tests.yml | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| package: ["dbt-athena", "dbt-athena-community"] | ||
| os: [ubuntu-22.04] | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
| with: | ||
| package: ${{ matrix.package }} | ||
| branch: ${{ github.event.pull_request.head.ref }} | ||
| repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
| os: ${{ matrix.os }} | ||
| python-version: ${{ matrix.python-version }} | ||
| secrets: inherit | ||
| # This job does nothing and is only used for branch protection | ||
| results: | ||
| name: "Pull request checks" | ||
| if: always() | ||
| needs: [code-quality, changelog, verify-builds, unit-tests, integration-tests] | ||
|
Check failure on line 76 in .github/workflows/pull-request-checks.yml
|
||
| runs-on: ${{ vars.DEFAULT_RUNNER }} | ||
| steps: | ||
| - uses: re-actors/alls-green@release/v1 | ||
| with: | ||
| jobs: ${{ toJSON(needs) }} | ||