-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/add union data #123
Open
fivetran-jamie
wants to merge
16
commits into
main
Choose a base branch
from
feature/add-union-data
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
63ecab2
running successfully
fivetran-jamie b668a58
update readme
fivetran-jamie e35e9eb
docs and buildkite
fivetran-jamie 9caf6ad
doc tweak
fivetran-jamie 93ca4f3
add missing source_relation
fivetran-jamie ea142f4
doc tweaks
fivetran-jamie 4e390b5
add source relation to add_property_labels macro joins
fivetran-jamie 0644b82
make sure _dbt_source_relation doesn't slip in when all fields are paโฆ
fivetran-jamie b6900a5
exclude _dbt_source_relation from all_passthrough_column_check macro
fivetran-jamie 1f7cda8
disable source dynamically
fivetran-jamie c8c51da
add github stuff
fivetran-jamie 7b2a5ca
polish readme
fivetran-jamie 7a37bb8
joe feedback
fivetran-jamie 363527b
joe feedback
fivetran-jamie ad0c752
switch source defining instructions
fivetran-jamie 7ef069f
tiny tweak to readme
fivetran-jamie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,13 @@ | ||
name: 'auto release' | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- main | ||
|
||
jobs: | ||
call-workflow-passing-data: | ||
if: github.event.pull_request.merged | ||
uses: fivetran/dbt_package_automations/.github/workflows/auto-release.yml@main | ||
secrets: inherit |
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,35 @@ | ||
name: 'check docs' | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
changed-files: | ||
runs-on: ubuntu-latest | ||
name: test changed-files | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: docs/** | ||
|
||
- name: Check to see if docs folder hasn't changed | ||
if: steps.changed-files.outputs.any_changed == 'false' | ||
run: | | ||
echo "Docs have not been regenerated." | ||
exit 1 | ||
|
||
- name: Check if docs folder has changed | ||
if: steps.changed-files.outputs.any_changed == 'true' | ||
run: | | ||
echo "Docs have been regenerated!" | ||
exit 0 | ||
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# dbt_hubspot_source v0.15.0 | ||
fivetran-jamie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[PR #123](https://github.com/fivetran/dbt_hubspot_source/pull/123) includes the following updates: | ||
|
||
## ๐ Feature Update ๐ | ||
- This release supports running the package on multiple Hubspot sources at once! See the [README](https://github.com/fivetran/dbt_hubspot_source?tab=readme-ov-file#step-3-define-database-and-schema-variables) for details on how to leverage this feature. | ||
|
||
## ๐ ๏ธ Under the Hood ๐ ๏ธ | ||
- Included auto-releaser GitHub Actions workflow to automate future releases. | ||
- Included Github Actions workflow to check for docs updates. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After removing the file we should also remove this entry. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed |
||
- Updated the maintainer PR template to resemble the most up to date format. | ||
|
||
# dbt_hubspot_source v0.14.0 | ||
[PR #122](https://github.com/fivetran/dbt_hubspot_source/pull/122) includes the following updates: | ||
|
||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's actually remove this. We are planning on taking a new approach this year on docs checking and generation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed