Skip to content

Commit

Permalink
Merge branch 'main' into fix_null_equality_110
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianburusdbt authored Dec 20, 2024
2 parents 4e09e9c + 5741dc2 commit 5b9a2fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,21 @@ resolves #
tradeoffs you considered.
-->

### Concrete Adapter Testing

At the appropriate stage of development or review, please use an integration test workflow in each of the following repos against your branch.

Use these to confirm that your feature add or bug fix (1) achieves the desired behavior (2) does not disrupt other concrete adapters:
* [ ] Postgres
* [ ] Snowflake
* [ ] Spark
* [ ] Redshift
* [ ] Bigquery

Please link to each CI invocation workflow in this checklist here or in a separate PR comment.

*Note*: Before hitting merge, best practice is to test against your PR's latest SHA.

### Checklist

- [ ] I have read [the contributing guide](https://github.com/dbt-labs/dbt-adapters/blob/main/CONTRIBUTING.md) and understand what's expected of me
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/_generate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ jobs:
steps:
- id: branch
run: |
branch=""
if [ ${{ needs.temp-branch.outputs.name == '' || inputs.merge }}]
if [[ ${{ needs.temp-branch.outputs.name == '' || inputs.merge }} ]]
then
branch="${{ inputs.branch }}"
else
Expand Down

0 comments on commit 5b9a2fd

Please sign in to comment.