Skip to content

Commit e8f7641

Browse files
committed
add cicd
1 parent 13f9640 commit e8f7641

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
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

0 commit comments

Comments
 (0)