-
Notifications
You must be signed in to change notification settings - Fork 984
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'current' into fix/kms_key_name_for_snapshots_and_seeds_…
…supported
- Loading branch information
Showing
1,062 changed files
with
47,054 additions
and
13,597 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
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,54 @@ | ||
name: Contribute to the dbt Developer Blog | ||
description: > | ||
For proposing a new post on the dbt Developer Blog. | ||
labels: ["content","developer blog"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
We're excited to hear about your idea for the dbt Developer Blog. This template will help lay out the proposed post and then we will work with on next steps! | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you? | ||
placeholder: your preferred email and/or dbt Slack handle | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: read-contribution | ||
attributes: | ||
label: I have read the dbt Developer Blog contribution guidelines. | ||
description: You can find the contribution guide [here](https://github.com/dbt-labs/docs.getdbt.com/blob/current/contributing/developer-blog.md) | ||
options: | ||
- label: I have read the dbt Developer Blog contribution guidelines. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: author_type | ||
attributes: | ||
label: Which of these best describes you? | ||
options: | ||
- label: I am a dbt Community member or partner contributing to the Developer Blog | ||
- label: I work for dbt Labs and am creating this issue for a community or marketing approved piece. | ||
validations: | ||
|
||
|
||
- type: textarea | ||
attributes: | ||
label: > | ||
What is the topic of your post? | ||
description: | | ||
Please provide a short (~ 1 paragraph) summary as well as who this post is targeted towards (ie people interested in learning more about dbt snapshots or advanced Jinja users) | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Link to an initial outline. | ||
description: Please link to a short outline in Notion, or Google Docs | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
on: | ||
push: | ||
branches: | ||
- "current" | ||
|
||
jobs: | ||
pull-request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: pull-request | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: "current" | ||
destination_branch: "next" | ||
pr_title: "Merge current branch into next" | ||
pr_body: "*An automated PR to keep the next branch up to date with current*" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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,47 @@ | ||
name: cypress tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- current | ||
|
||
jobs: | ||
start-workflow: | ||
name: start workflow | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: install node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16.13.1' | ||
|
||
- name: npm install | ||
run: cd website && npm ci | ||
|
||
- name: setup env | ||
run: | | ||
PR_NUMBER=$(jq --raw-output .pull_request.number ${{ github.event_path }}) | ||
echo "PR_NUMBER=${PR_NUMBER}" >> ${GITHUB_ENV} | ||
- name: run cypress e2e | ||
uses: cypress-io/github-action@v4 | ||
with: | ||
command: npx cypress run | ||
browser: chrome | ||
working-directory: website | ||
spec: cypress/e2e/*.cy.js | ||
wait-on: https://deploy-preview-${{ env.PR_NUMBER }}--docs-getdbt-com.netlify.app | ||
wait-on-timeout: 600 | ||
env: | ||
CYPRESS_BASE_URL: https://deploy-preview-${{ env.PR_NUMBER }}--docs-getdbt-com.netlify.app | ||
|
||
- name: Screenshot artifact upload | ||
uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: cypress/screenshots |
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,14 +1,24 @@ | ||
name: Add size label to PR | ||
on: | ||
pull_request_target | ||
name: labeler | ||
|
||
on: [pull_request_target] | ||
|
||
jobs: | ||
build: | ||
name: Add Size Label to PR | ||
labeler: | ||
runs-on: ubuntu-latest | ||
name: Label the PR size | ||
steps: | ||
- name: Add Size Label to PR | ||
uses: WizardOhio24/[email protected] | ||
with: | ||
- uses: codelytv/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
size-label-color: '10, size: x-small | 50, size: small | 250, size: medium | 500, size: large | 100000, size: x-large' | ||
xs_label: 'size: x-small' | ||
xs_max_size: '10' | ||
s_label: 'size: small' | ||
s_max_size: '50' | ||
m_label: 'size: medium' | ||
m_max_size: '250' | ||
l_label: 'size: large' | ||
l_max_size: '100000' | ||
xl_label: 'size: x-large' | ||
fail_if_xl: 'false' | ||
files_to_ignore: '' | ||
|
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,9 @@ | ||
{ | ||
"spellright.language": [ | ||
"en" | ||
], | ||
"spellright.documentTypes": [ | ||
"latex", | ||
"plaintext" | ||
] | ||
} |
Oops, something went wrong.