From 4bac2a91f636370db157a2cb7898b232d36b9f44 Mon Sep 17 00:00:00 2001 From: Stuart MacDonald <32204841+labkey-stuartm@users.noreply.github.com> Date: Wed, 25 Mar 2026 08:41:16 -0700 Subject: [PATCH] update docker-compose and readme to use v26.3.0 image and add validate_pr GH workflow --- .github/workflows/workflow.yml | 29 +++++++++++++++++++++++++++++ README.md | 2 +- docker-compose.yml | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..28451d8 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -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 }} diff --git a/README.md b/README.md index 3c93871..6d74b65 100644 --- a/README.md +++ b/README.md @@ -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` \ No newline at end of file +`export IDENT="labkeyteamcity/labkey-community:26.3.0" docker compose up community --detach` \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index deb1a55..28e4c37 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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