mirror of https://github.com/buster-so/buster.git
Merge branch 'main' into staging
This commit is contained in:
commit
dc0dd9aa30
|
@ -8,7 +8,6 @@ name: Deploy to main
|
||||||
jobs:
|
jobs:
|
||||||
database-deploy:
|
database-deploy:
|
||||||
runs-on: blacksmith-16vcpu-ubuntu-2204
|
runs-on: blacksmith-16vcpu-ubuntu-2204
|
||||||
if: contains(github.event.head_commit.modified_files, 'api/migrations/') || contains(github.event.head_commit.added_files, 'api/migrations/')
|
|
||||||
environment: main
|
environment: main
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
|
@ -8,7 +8,6 @@ name: Deploy to staging
|
||||||
jobs:
|
jobs:
|
||||||
database-deploy:
|
database-deploy:
|
||||||
runs-on: blacksmith-16vcpu-ubuntu-2204
|
runs-on: blacksmith-16vcpu-ubuntu-2204
|
||||||
if: contains(github.event.head_commit.modified_files, 'api/migrations/') || contains(github.event.head_commit.added_files, 'api/migrations/')
|
|
||||||
environment: staging
|
environment: staging
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.0.5
|
0.0.8
|
||||||
|
|
|
@ -23,6 +23,8 @@ export const ListDatasetGroupsComponent: React.FC<{
|
||||||
[]
|
[]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
console.log('datasetGroups', datasetGroups);
|
||||||
|
|
||||||
const datasetGroupsRows: BusterListRowItem[] = useMemo(() => {
|
const datasetGroupsRows: BusterListRowItem[] = useMemo(() => {
|
||||||
return datasetGroups.reduce<BusterListRowItem[]>((acc, datasetGroup) => {
|
return datasetGroups.reduce<BusterListRowItem[]>((acc, datasetGroup) => {
|
||||||
const rowItem: BusterListRowItem = {
|
const rowItem: BusterListRowItem = {
|
||||||
|
|
Loading…
Reference in New Issue