Skip to content

Commit 7457be4

Browse files
authored
Merge pull request #339 from tinybirdco/cicd
add cicd
2 parents 13f9640 + 05b7a1e commit 7457be4

File tree

5 files changed

+51
-1
lines changed

5 files changed

+51
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
##################################################
3+
### Visit https://github.com/tinybirdco/ci ###
4+
### for more details or custom CI/CD ###
5+
##################################################
6+
7+
name: Tinybird - CD Workflow
8+
9+
on:
10+
workflow_dispatch:
11+
push:
12+
paths:
13+
- 'alter_default_value_in_column/**'
14+
branches:
15+
- main
16+
jobs:
17+
cd:
18+
uses: tinybirdco/ci/.github/workflows/cd.yml@v4.0.1
19+
with:
20+
data_project_dir: ./alter_default_value_in_column
21+
secrets:
22+
tb_admin_token: ${{ secrets.TB_ADMIN_TOKEN_ALTER_DEFAULT }}
23+
tb_host: https://api.tinybird.co
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
##################################################
3+
### Visit https://github.com/tinybirdco/ci ###
4+
### for more details or custom CI/CD ###
5+
##################################################
6+
7+
name: Tinybird - CI Workflow
8+
9+
on:
10+
workflow_dispatch:
11+
pull_request:
12+
paths:
13+
- 'alter_default_value_in_column/**'
14+
branches:
15+
- main
16+
types: [opened, reopened, labeled, unlabeled, synchronize, closed]
17+
18+
concurrency: ${{ github.workflow }}-${{ github.event.pull_request.number }}
19+
20+
jobs:
21+
ci:
22+
uses: tinybirdco/ci/.github/workflows/ci.yml@v4.0.1
23+
with:
24+
data_project_dir: ./alter_default_value_in_column
25+
secrets:
26+
tb_admin_token: ${{ secrets.TB_ADMIN_TOKEN_ALTER_DEFAULT }}
27+
tb_host: https://api.tinybird.co

alter_default_value_in_column/datasources/fixtures/.gitkeep

Whitespace-only changes.

alter_default_value_in_column/pipes/top_sources.pipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ TOKEN "dashboard" READ
88

99
NODE endpoint
1010
DESCRIPTION >
11-
Group by referral and calcualte hits and visits
11+
Group by referral and calcualte hits and visits.
1212

1313
SQL >
1414

alter_default_value_in_column/tests/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)