forked from opensource-observer/oso
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
prsync[bot]
committed
May 23, 2024
1 parent
8654dff
commit 179cc18
Showing
2 changed files
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Hello World Workflow | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
hello-world-job: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Print Hello, World! | ||
run: echo "Hello, World!" |
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,26 @@ | ||
opensource_observer: | ||
outputs: | ||
playground: | ||
type: bigquery | ||
method: service-account | ||
keyfile: "{{ env_var('DBT_GOOGLE_KEYFILE') }}" | ||
project: "{{ env_var('DBT_GOOGLE_PROJECT') }}" | ||
dataset: "{{ env_var('DBT_GOOGLE_DATASET') }}" | ||
job_execution_time_seconds: 300 | ||
job_retries: 1 | ||
location: US | ||
threads: 32 | ||
dev: | ||
type: bigquery | ||
method: service-account | ||
keyfile: "{{ env_var('DBT_GOOGLE_KEYFILE') }}" | ||
project: "{{ env_var('DBT_GOOGLE_PROJECT') }}" | ||
dataset: "{{ env_var('DBT_GOOGLE_DEV_DATASET') }}" | ||
job_execution_time_seconds: 300 | ||
job_retries: 1 | ||
location: US | ||
threads: 32 | ||
# By default we target the playground. it's less costly and also safer to write | ||
# there while developing | ||
target: playground | ||
|