Skip to content

Commit 6f3617b

Browse files
Merge pull request #82 from fivetran/docs/restart-pages
docs/restart-pages
2 parents f9fdbd8 + 13d046e commit 6f3617b

9 files changed

+54
-28
lines changed

.github/pull_request_template.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Pull Request
21
**Are you a current Fivetran customer?**
32
<!--- Please tell us your name, title and company -->
43

.github/workflows/check_docs.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 'check docs'
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
jobs:
11+
changed-files:
12+
runs-on: ubuntu-latest
13+
name: test changed-files
14+
steps:
15+
- uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Get changed files
20+
id: changed-files
21+
uses: tj-actions/[email protected]
22+
with:
23+
files: docs/**
24+
25+
- name: Check to see if docs folder hasn't changed
26+
if: steps.changed-files.outputs.any_changed == 'false'
27+
run: |
28+
echo "Docs have not been regenerated."
29+
exit 1
30+
31+
- name: Check if docs folder has changed
32+
if: steps.changed-files.outputs.any_changed == 'true'
33+
run: |
34+
echo "Docs have been regenerated!"
35+
exit 0

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# dbt_hubspot v0.6.2
2+
## Under the Hood
3+
- Updated the docs as there were issues with the previous deployment. ([#82](https://github.com/fivetran/dbt_hubspot/pull/82))
4+
- Introduced a GitHub workflow to ensure docs are re-built prior to merges to `main`. ([#82](https://github.com/fivetran/dbt_hubspot/pull/82))
15
# dbt_hubspot v0.6.1
26
## Fixes
37
- The README had holdover merge artifacts included within it. Those artifacts have since been removed in this release. [#80](https://github.com/fivetran/dbt_hubspot/pull/80)

dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'hubspot'
2-
version: '0.6.1'
2+
version: '0.6.2'
33
config-version: 2
44
require-dbt-version: [">=1.0.0", "<2.0.0"]
55

docs/catalog.json

+1-1
Large diffs are not rendered by default.

docs/index.html

+10-22
Large diffs are not rendered by default.

docs/manifest.json

+1-1
Large diffs are not rendered by default.

docs/run_results.json

+1-1
Large diffs are not rendered by default.

integration_tests/dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
name: 'hubspot_integration_tests'
3-
version: '0.6.1'
3+
version: '0.6.2'
44
profile: 'integration_tests'
55
config-version: 2
66

0 commit comments

Comments
 (0)