generated from dbt-labs/dbt-oss-template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-release-workflow
- Loading branch information
Showing
11 changed files
with
173 additions
and
58 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Under the Hood | ||
body: Inject TagIterator into BlockIterator for greater flexibility. | ||
time: 2024-01-23T16:11:07.24321-05:00 | ||
custom: | ||
Author: peterallenwebb | ||
Issue: "38" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Under the Hood | ||
body: Change metadata_vars \`if not\` to \`if ... is None\` | ||
time: 2024-01-23T19:42:42.95727089Z | ||
custom: | ||
Author: truls-p | ||
Issue: "6073" |
Validating CODEOWNERS rules …
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This file contains the code owners for the dbt-common repo. | ||
# PRs will be require review from the associated | ||
# team(s) or person(s) that touches any files that are mapped to them. | ||
# | ||
# A statement takes precedence over the statements above it so more general | ||
# assignments are found at the top with specific assignments being lower in | ||
# the ordering (i.e. catch all assignment should be the first item) | ||
# | ||
# Consult GitHub documentation for formatting guidelines: | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file | ||
|
||
# As a default for areas with no assignment, | ||
# the core team as a whole will be assigned | ||
* @dbt-labs/core-team |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: TaskList Template | ||
about: Template for issues created off tasklists | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Short description | ||
|
||
<!-- Describe the scope of the ticket, a high-level implementation approach and any tradeoffs to consider --> | ||
|
||
## Acceptance criteria | ||
|
||
<!-- What is the definition of done for this ticket? Include any relevant edge cases and/or test cases --> | ||
|
||
## Suggested Tests | ||
|
||
<!-- Provide scenarios to test. Link to existing similar tests if appropriate. --> | ||
|
||
## Impact to Other Teams | ||
|
||
<!-- Will this change impact other teams? Include details of the kinds of changes required (new tests, code changes, related tickets) and _add the relevant `Impact:[team]` label_. --> | ||
|
||
## Context | ||
|
||
<!-- Provide the "why", motivation, and alternative approaches considered -- linking to previous refinement issues, spikes, docs as appropriate --> |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# **what?** | ||
# Runs all tests in dbt-core with this branch of dbt-common to ensure nothing is broken | ||
|
||
# **why?** | ||
# Ensure dbt-common changes do nto break dbt-core | ||
|
||
# **when?** | ||
# This will run when trying to merge a PR into main. | ||
# It can also be manually triggered. | ||
|
||
## TODO: This is a stub. It does nothing right now. | ||
# It will be updated in the future as part of https://github.com/dbt-labs/dbt-common/issues/18 | ||
|
||
name: Test Against dbt-core | ||
|
||
on: | ||
merge_group: | ||
types: [checks_requested] | ||
workflow_dispatch: | ||
|
||
permissions: read-all | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
test-dbt-core: | ||
name: "This does nothing right now - always passes" | ||
|
||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: "Check out dbt-core" | ||
uses: actions/checkout@v3 | ||
|
||
- name: "Set up Python 3.11" | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: "Update the version of dbt-common" | ||
run: | | ||
echo "Update the version of dbt-common ref'd in dbt-core" | ||
- name: "Install dbt-core" | ||
run: | | ||
echo "Install dbt-core with updated dbt-common ref" | ||
- name: "Run Tests" | ||
run: | | ||
echo "Running tests in future versions." |
This file contains 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
This file contains 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
Oops, something went wrong.