Skip to content

Commit 042e080

Browse files
committed
Merge discvr-19.3 to develop
2 parents 41783cb + 9f6b471 commit 042e080

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/sync-repos.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
- cron: "15 */3 * * *"
55
jobs:
66
sync-release-branches:
7+
# github.head_ref should only be set on forked repos, meaning this action should only run on the primary fork
8+
if: github.head_ref == ''
79
runs-on: ubuntu-latest
810
steps:
911
- name: "Sync Release Branches"
@@ -15,6 +17,7 @@ jobs:
1517
destination_branch_prefix: "discvr-"
1618
github_token: ${{ secrets.GITHUB_TOKEN }}
1719
sync-develop:
20+
if: github.head_ref == ''
1821
runs-on: ubuntu-latest
1922
steps:
2023
- name: "Sync Develop Branch"

laboratory/src/org/labkey/laboratory/LaboratoryUserSchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ else if (LaboratorySchema.TABLE_SAMPLES.equalsIgnoreCase(name))
6666

6767
private SimpleTable getSubjectsTable(String name, @NotNull TableInfo schematable, ContainerFilter cf)
6868
{
69-
return new ContainerScopedTable(this, schematable, cf, "subjectname").init();
69+
return new ContainerScopedTable<>(this, schematable, cf, "subjectname").init();
7070
}
7171

7272
private TableInfo getContainerScopedTable(String name, @NotNull TableInfo schematable, ContainerFilter cf, String pkCol)
7373
{
74-
return new ContainerScopedTable(this, schematable, cf, pkCol).init();
74+
return new ContainerScopedTable<>(this, schematable, cf, pkCol).init();
7575
}
7676

7777
private SimpleTable getDnaOligosTable(String name, @NotNull TableInfo schematable, ContainerFilter cf)

0 commit comments

Comments
 (0)