This repository was archived by the owner on Jan 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
freature/work-type-support #47
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
e3f7146
freature/work-type-support
fivetran-joemarkiewicz c984dc2
changelog and other minor updates
fivetran-joemarkiewicz 7f9f8a5
Generate dbt docs via GitHub Actions
github-actions[bot] f95a513
Q2 FY26 Automatic Package Updates (#48)
fivetran-data-model-bot 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
55 changes: 32 additions & 23 deletions
55
.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,38 @@ | ||
| ## PR Overview | ||
| **This PR will address the following Issue/Feature:** | ||
| <!-- | ||
| Pre-Submission Reminders | ||
| Before marking this PR as "ready for review": | ||
|
|
||
| **This PR will result in the following new package version:** | ||
| <!--- Please add details around your decision for breaking vs non-breaking version upgrade. If this is a breaking change, were backwards-compatible options explored? --> | ||
| - `dbt run --full-refresh && dbt test` | ||
| - `dbt run` && `dbt test` (if incremental models are present) | ||
| - The related issue is linked, tagged, and appropriately assigned | ||
| - Documentation and version updates are included, if applicable | ||
| - `docs` have been regenerated (unless there are no code or YAML changes) | ||
| - BuildKite integration tests are passing | ||
| --> | ||
|
|
||
| **Please provide the finalized CHANGELOG entry which details the relevant changes included in this PR:** | ||
| <!--- Copy/paste the CHANGELOG for this version below. --> | ||
| ## PR Overview | ||
| **Package version introduced in this PR:** | ||
| - | ||
|
|
||
| ## PR Checklist | ||
| ### Basic Validation | ||
| Please acknowledge that you have successfully performed the following commands locally: | ||
| - [ ] dbt run –full-refresh && dbt test | ||
| - [ ] dbt run (if incremental models are present) && dbt test | ||
| **This PR addresses the following Issue/Feature(s):** | ||
| <!-- Add Issue # or internal ticket reference --> | ||
| - | ||
|
|
||
| Before marking this PR as "ready for review" the following have been applied: | ||
| - [ ] The appropriate issue has been linked, tagged, and properly assigned | ||
| - [ ] All necessary documentation and version upgrades have been applied | ||
| - [ ] docs were regenerated (unless this PR does not include any code or yml updates) | ||
| - [ ] BuildKite integration tests are passing | ||
| - [ ] Detailed validation steps have been provided below | ||
| **Summary of changes:** | ||
| <!-- 1-2 sentences describing PR changes. --> | ||
| - | ||
|
|
||
| ### Detailed Validation | ||
| Please share any and all of your validation steps: | ||
| <!--- Provide the steps you took to validate your changes below. --> | ||
| ### Submission Checklist | ||
| - [ ] Alignment meeting with the reviewer (if needed) | ||
| - [ ] Timeline and validation requirements discussed | ||
| - [ ] Provide validation details: | ||
| - [ ] **Validation Steps:** Check for unintentional effects (e.g., add/run consistency & integrity tests) | ||
| - [ ] **Testing Instructions:** Confirm the change addresses the issue(s) | ||
| - [ ] **Focus Areas:** Complex logic or queries that need extra attention | ||
| - [ ] Merge any relevant open PRs into this PR | ||
|
|
||
| ### If you had to summarize this PR in an emoji, which would it be? | ||
| <!--- For a complete list of markdown compatible emojis check our this git repo (https://gist.github.com/rxaviers/7360908) --> | ||
| :dancer: | ||
| ### Changelog | ||
| <!-- Recommend drafting changelog notes, then refining via ChatGPT using: | ||
| "Draft a changelog entry based on the following notes." --> | ||
| - [ ] Draft changelog for PR | ||
| - [ ] Final changelog for release review |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| name: 'generate dbt docs' | ||
| on: | ||
| pull_request: | ||
| types: | ||
| - labeled | ||
|
|
||
| jobs: | ||
| generate-docs: | ||
| if: github.event.label.name == 'docs:ready' | ||
| uses: fivetran/dbt_package_automations/.github/workflows/generate-docs.yml@main | ||
| secrets: inherit | ||
| with: | ||
| schema_var_name: jira_schema |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,73 @@ | ||
| target/ | ||
| # dbt | ||
| **/package-lock.yml | ||
| package-lock.yml | ||
| .dbt/ | ||
| dbt_modules/ | ||
| dbt_packages/ | ||
| logs/ | ||
| profiles.yml | ||
| target/ | ||
| *.log | ||
|
|
||
| # IDE files | ||
| .idea/ | ||
| .vscode/ | ||
| *~ | ||
| *.swp | ||
| *.swo | ||
|
|
||
| # Jupyter Notebook | ||
| .ipynb_checkpoints | ||
|
|
||
| # OS generated files | ||
| **/.DS_Store | ||
| .DS_Store | ||
| dbt_packages/ | ||
| .Spotlight-V100 | ||
| .Trashes | ||
| ._* | ||
| Thumbs.db | ||
| ehthumbs.db | ||
|
|
||
| # Python | ||
| *.egg | ||
| *.egg-info/ | ||
| *.py[cod] | ||
| *.so | ||
| *$py.class | ||
| .Python | ||
| __pycache__/ | ||
| build/ | ||
| develop-eggs/ | ||
| dist/ | ||
| downloads/ | ||
| eggs/ | ||
| .env | ||
| .installed.cfg | ||
| lib/ | ||
| lib64/ | ||
| MANIFEST | ||
| parts/ | ||
| sdist/ | ||
| var/ | ||
| wheels/ | ||
|
|
||
| # Secrets and credentials | ||
| .env.* | ||
| .secrets | ||
| credentials.json | ||
| service-account.json | ||
|
|
||
| # Temporary files | ||
| .cache/ | ||
| *.temp | ||
| *.tmp | ||
|
|
||
| # Virtual environments | ||
| .conda/ | ||
| .env | ||
| .venv | ||
| ENV/ | ||
| env/ | ||
| package-lock.yml | ||
| env.bak/ | ||
| venv/ | ||
| venv.bak/ |
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| id,_fivetran_deleted,_fivetran_synced,_original_estimate,_remaining_estimate,_time_spent,assignee,created,creator,description,due_date,environment,issue_type,key,last_viewed,original_estimate,parent_id,priority,project,remaining_estimate,reporter,resolution,resolved,status,status_category_changed,summary,time_spent,updated,work_ratio | ||
| 10011,FALSE,2020-11-06 22:23:38,,,,,2020-04-01 08:33:58,5c3326c24b248c315badf3ee,"Yes, this is an issue to test permissions",,,10103,TP-8,,,,3,10001,,5c3326c24b248c315badf3ee,,2020-05-29 11:33:53,3,2020-04-01 08:34:02,We want to test permissions,,2020-05-29 11:33:53,-1 | ||
| 10015,FALSE,2020-11-06 22:23:41,,,,,2020-06-11 07:38:03,5ed0edbe2999b60c23255b4f,,,,10103,TP-12,,,,5,10001,,5ed0edbe2999b60c23255b4f,,2020-06-11 07:38:03,10003,2020-06-11 07:38:03,Part of test epic,,2020-06-11 07:38:03,-1 | ||
| 10018,FALSE,2020-11-12 12:20:50,,,,,2020-11-10 19:11:45,557058:a9572f6a-3041-435a-96ed-5286e3811b33,,,,10103,TCP-1,2020-11-10 19:11:46,,,3,10005,,557058:a9572f6a-3041-435a-96ed-5286e3811b33,,2020-11-28 19:11:45,10003,2020-11-28 19:11:46,this is a story,,2020-11-28 19:11:45,-1 | ||
| id,_fivetran_deleted,_fivetran_synced,_original_estimate,_remaining_estimate,_time_spent,assignee,created,creator,description,due_date,environment,issue_type,key,last_viewed,original_estimate,parent_id,priority,project,remaining_estimate,reporter,resolution,resolved,status,status_category_changed,summary,time_spent,updated,work_ratio,work_type | ||
| 10011,FALSE,2020-11-06 22:23:38,,,,,2020-04-01 08:33:58,5c3326c24b248c315badf3ee,"Yes, this is an issue to test permissions",,,10103,TP-8,,,,3,10001,,5c3326c24b248c315badf3ee,,2020-05-29 11:33:53,3,2020-04-01 08:34:02,We want to test permissions,,2020-05-29 11:33:53,-1,10103 | ||
| 10015,FALSE,2020-11-06 22:23:41,,,,,2020-06-11 07:38:03,5ed0edbe2999b60c23255b4f,,,,,TP-12,,,,5,10001,,5ed0edbe2999b60c23255b4f,,2020-06-11 07:38:03,10003,2020-06-11 07:38:03,Part of test epic,,2020-06-11 07:38:03,-1,10103 | ||
| 10018,FALSE,2020-11-12 12:20:50,,,,,2020-11-10 19:11:45,557058:a9572f6a-3041-435a-96ed-5286e3811b33,,,,10103,TCP-1,2020-11-10 19:11:46,,,3,10005,,557058:a9572f6a-3041-435a-96ed-5286e3811b33,,2020-11-28 19:11:45,10003,2020-11-28 19:11:46,this is a story,,2020-11-28 19:11:45,-1, |
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.