Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
deploy:
name: "Deploy bundle"
runs-on: ubuntu-latest
runs-on: [self-hosted]

steps:
- uses: actions/checkout@v3
Expand All @@ -29,7 +29,7 @@ jobs:

pipeline_update:
name: "Run pipeline update"
runs-on: ubuntu-latest
runs-on: [self-hosted]

needs:
- deploy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
deploy:
name: "Deploy bundle"
runs-on: ubuntu-latest
runs-on: [self-hosted]

steps:
- uses: actions/checkout@v3
Expand All @@ -32,7 +32,7 @@ jobs:

pipeline_update:
name: "Run pipeline update"
runs-on: ubuntu-latest
runs-on: [self-hosted]

needs:
- deploy
Expand Down
10 changes: 5 additions & 5 deletions bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ bundle:
name: medium_post_report

workspace:
host: https://e2-dogfood.staging.cloud.databricks.com/
host: https://e2-demo-field-eng.cloud.databricks.com/

resources:

pipelines:
# Our DLT pipeline
medium_metrics_pipeline:
name: "[${bundle.environment}] FE Medium Metrics Pipeline"
name: "[${bundle.environment}] FE Medium Metrics Pipeline2"
target: "medium_post_report_${bundle.environment}"
libraries:
- file:
Expand All @@ -24,7 +24,7 @@ resources:
jobs:
# A two-task Databricks Workflow - dlt + notebook report
fe_medium_metrics:
name: "[${bundle.environment}] Metrics for FE Medium Posts"
name: "[${bundle.environment}] Metrics for FE Medium Posts2"
tasks:
- task_key: dlt_medium_pipeline
pipeline_task:
Expand All @@ -51,7 +51,7 @@ environments:

qa: # This environment is when deploying test runs from a pull request on GitHub.
workspace:
host: https://e2-demo-west.cloud.databricks.com/
host: https://e2-demo-field-eng.cloud.databricks.com/
resources:
pipelines:
medium_metrics_pipeline:
Expand All @@ -62,7 +62,7 @@ environments:

production:
workspace:
host: https://e2-demo-west.cloud.databricks.com/
host: https://e2-demo-field-eng.cloud.databricks.com/
resources:
pipelines:
medium_metrics_pipeline:
Expand Down
Loading