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