Skip to content

Commit

Permalink
Merge branch 'main' into node-info-checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelleArk authored Mar 7, 2025
2 parents 2a81225 + 4b78d1e commit 1e14102
Show file tree
Hide file tree
Showing 25 changed files with 38 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/_changelog-entry-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Changelog entry check"
name: "# Changelog entry check"
run-name: "Changelog entry check - ${{ github.actor }} - package:${{ inputs.package }} pull-request:${{ inputs.pull-request }}"

# this cannot be tested via workflow_dispatch
# dorny/paths-filter inspects the current trigger to determine how to compare branches
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_code-quality.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Code quality"
name: "# Code quality"
run-name: "Code quality - ${{ github.actor }} - branch:${{ inputs.branch }} repository:${{ inputs.repository }}"

on:
workflow_call:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_generate-changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Changelog generation"
name: "# Changelog generation"
run-name: "Changelog generation - ${{ github.actor }} - package:${{ inputs.package }} merge:${{ inputs.merge }} branch:${{ inputs.branch }}"

on:
workflow_call:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Integration tests"
name: "# Integration tests"
run-name: "Integration tests - ${{ github.actor }} - package:${{ inputs.package }} branch:${{ inputs.branch }} repository:${{ inputs.repository }} os:${{ inputs.os }} python-version:${{ inputs.python-version }}"

on:
workflow_call:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/_publish-internal.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Publish internally"
name: "# Publish internal"
run-name: "Publish internal - ${{ github.actor }} - package:${{ inputs.package }} branch:${{ inputs.branch }}"

on:
workflow_call:
Expand Down Expand Up @@ -44,7 +45,7 @@ jobs:
publish:
runs-on: ${{ vars.DEFAULT_RUNNER }}
environment:
name: "prod"
name: "cloud-prod"
steps:
- uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Publish to PyPI"
name: "# Publish PyPI"
run-name: "Publish PyPI - ${{ github.actor }} - package:${{ inputs.package }} deploy-to:${{ inputs.deploy-to }} branch:${{ inputs.branch }}"

on:
workflow_call:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Unit tests"
name: "# Unit tests"
run-name: "Unit tests - ${{ github.actor }} - package:${{ inputs.package }} branch:${{ inputs.branch }} repository:${{ inputs.repository }} os:${{ inputs.os }} python-version:${{ inputs.python-version }}"

on:
workflow_call:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/_verify-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Verify build"
name: "# Verify build"
run-name: "Verify build - ${{ github.actor }} - package:${{ inputs.package }} branch:${{ inputs.branch }} repository:${{ inputs.repository }} os:${{ inputs.os }} python-version:${{ inputs.python-version }}"

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Issue triage"
run-name: "Issue triage - #${{ github.event.issue.number }}: ${{ github.event.issue.title }} - ${{ github.actor }}"
run-name: "Issue triage - ${{ github.actor }} - #${{ github.event.issue.number }}: ${{ github.event.issue.title }}"

on: issue_comment

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-internal.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Publish to internal"
run-name: "Publish to internal - ${{ inputs.package }} - ${{ github.actor }}"
name: "Publish internal"
run-name: "Publish internal - ${{ github.actor }} - package:${{ inputs.package }} branch:${{ inputs.branch }} skip-unit-tests:${{ inputs.skip-unit-tests }} skip-integration-tests:${{ inputs.skip-integration-tests }}"

on:
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-oss.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Publish to OSS"
run-name: "Publish to OSS - ${{ inputs.package }} - ${{ inputs.deploy-to }} - ${{ github.actor }}"
name: "Publish OSS"
run-name: "Publish OSS - ${{ github.actor }} - package:${{ inputs.package }} deploy-to:${{ inputs.deploy-to }} branch:${{ inputs.branch }} skip-unit-tests:${{ inputs.skip-unit-tests }} skip-integration-tests:${{ inputs.skip-integration-tests }}"

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Pull request checks"
run-name: "Pull request checks - #${{ github.event.number }} - ${{ github.actor }}"
run-name: "Pull request checks - ${{ github.actor }} - #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}"

on:
pull_request_target:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scheduled-maintenance.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Scheduled maintenance"
run-name: "Scheduled maintenance - ${{ github.actor }}"

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-publishing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Scheduled publishing"
run-name: "Publish to internal - Scheduled"
run-name: "Scheduled publishing - ${{ github.actor }}"

on:
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scheduled-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "Scheduled tests"
run-name: "Scheduled tests - ${{ github.actor }}"

on:
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/user-docs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Open user docs issue"
run-name: "Open user docs issue - #${{ github.event.issue.number }} - ${{ github.actor }}"
name: "User docs"
run-name: "User docs - ${{ github.actor }} - #${{ github.event.issue.number }}: ${{ github.event.issue.title }}"

on:
issues:
Expand Down
2 changes: 1 addition & 1 deletion dbt-adapters/src/dbt/adapters/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.14.1"
version = "1.14.2a0"
4 changes: 2 additions & 2 deletions dbt-athena-community/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
# these versions should always match and they both should match the local version of dbt-athena
dependencies = ["dbt-athena==1.9.1"]
version = "1.9.1"
dependencies = ["dbt-athena==1.9.2a0"]
version = "1.9.2a0"
[project.urls]
Homepage = "https://github.com/dbt-labs/dbt-adapters/tree/main/dbt-athena"
Documentation = "https://docs.getdbt.com"
Expand Down
2 changes: 1 addition & 1 deletion dbt-athena/src/dbt/adapters/athena/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.9.1"
version = "1.9.2a0"
2 changes: 1 addition & 1 deletion dbt-bigquery/src/dbt/adapters/bigquery/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.10.0a1"
version = "1.9.2a0"
2 changes: 1 addition & 1 deletion dbt-postgres/src/dbt/adapters/postgres/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.9.0"
version = "1.9.1a0"
2 changes: 1 addition & 1 deletion dbt-redshift/src/dbt/adapters/redshift/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.10.0a1"
version = "1.9.1a0"
2 changes: 1 addition & 1 deletion dbt-snowflake/src/dbt/adapters/snowflake/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.10.0a1"
version = "1.9.2a0"
2 changes: 1 addition & 1 deletion dbt-spark/src/dbt/adapters/spark/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.10.0a1"
version = "1.9.2a0"
2 changes: 1 addition & 1 deletion dbt-tests-adapter/src/dbt/tests/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.11.0"
version = "1.11.1a0"

0 comments on commit 1e14102

Please sign in to comment.