Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Workflow to validate Pull Request branches
name: PR Validation

on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize

permissions:
pull-requests: write

jobs:
validate_pr:
# Only run for the LabKey org
if: github.event.pull_request.head.repo.owner.login == 'LabKey'
runs-on: ubuntu-latest

steps:
- name: Validate PR Branches
uses: LabKey/gitHubActions/validate-pr@develop
with:
pr_base: ${{ github.event.pull_request.base.ref }}
pr_head: ${{ github.event.pull_request.head.ref }}
pr_number: ${{ github.event.pull_request.number }}
pr_title: ${{ github.event.pull_request.title }}
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ There are a substantial number of configuration options available. The `docker-
We only publish tagged versions to Docker Hub (we don't publish a 'latest' tag). To upgrade to a new version of LabKey Community edition, you have two options:
1. Edit the `docker-compose.yml` file and update the `image` version to the LabKey version you wish to use.
2. Launch a new version with the `docker compose up` command line.
`export IDENT="labkeyteamcity/labkey-community:25.11.0" docker compose up community --detach`
`export IDENT="labkeyteamcity/labkey-community:26.3.0" docker compose up community --detach`
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

services:
community:
image: ${COMPOSE_IMAGE:-labkeyteamcity/labkey-community:25.11.0}
image: ${COMPOSE_IMAGE:-labkeyteamcity/labkey-community:26.3.0}
container_name: labkey-community
depends_on:
- pg-community
Expand Down