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:
|
||||
database-deploy:
|
||||
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
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
|
@ -8,7 +8,6 @@ name: Deploy to staging
|
|||
jobs:
|
||||
database-deploy:
|
||||
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
|
||||
steps:
|
||||
- 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(() => {
|
||||
return datasetGroups.reduce<BusterListRowItem[]>((acc, datasetGroup) => {
|
||||
const rowItem: BusterListRowItem = {
|
||||
|
|
Loading…
Reference in New Issue