From 5bfcb80c98bf616e8996ff5adfc512e27e3ed4b7 Mon Sep 17 00:00:00 2001 From: boc-the-git <3479092+boc-the-git@users.noreply.github.com> Date: Fri, 8 Mar 2024 02:50:52 +0000 Subject: [PATCH 1/2] Update image tag, for release v1.3.1 --- .../docs/documentation/getting-started/installation/postgres.md | 2 +- docs/docs/documentation/getting-started/installation/sqlite.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/documentation/getting-started/installation/postgres.md b/docs/docs/documentation/getting-started/installation/postgres.md index 79f428a2b6ab..73fc734e72df 100644 --- a/docs/docs/documentation/getting-started/installation/postgres.md +++ b/docs/docs/documentation/getting-started/installation/postgres.md @@ -9,7 +9,7 @@ PostgreSQL might be considered if you need to support many concurrent users. In version: "3.7" services: mealie: - image: ghcr.io/mealie-recipes/mealie:v1.1.0 # (3) + image: ghcr.io/mealie-recipes/mealie:v1.3.1 # (3) container_name: mealie ports: - "9925:9000" # (1) diff --git a/docs/docs/documentation/getting-started/installation/sqlite.md b/docs/docs/documentation/getting-started/installation/sqlite.md index 5de3f7e19152..cde9f684a90a 100644 --- a/docs/docs/documentation/getting-started/installation/sqlite.md +++ b/docs/docs/documentation/getting-started/installation/sqlite.md @@ -13,7 +13,7 @@ SQLite is a popular, open source, self-contained, zero-configuration database th version: "3.7" services: mealie: - image: ghcr.io/mealie-recipes/mealie:v1.1.0 # (3) + image: ghcr.io/mealie-recipes/mealie:v1.3.1 # (3) container_name: mealie ports: - "9925:9000" # (1) From 5b7f5738e30acb6152b57b198dc0b77c61fee1c7 Mon Sep 17 00:00:00 2001 From: boc-the-git <3479092+boc-the-git@users.noreply.github.com> Date: Fri, 8 Mar 2024 19:20:31 +1100 Subject: [PATCH 2/2] Add a comment to kick PR3268 along, and for future reference --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 817ba3e8c14e..66b5898c29ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,6 +68,9 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v6 + # This doesn't currently work for us because it creates the PR but the workflows don't run. + # TODO: Provide a personal access token as a parameter here, that solves that problem. + # https://github.com/peter-evans/create-pull-request with: commit-message: "Update image tag, for release ${{ github.event.release.tag_name }}" branch: "docs/newrelease-update-version-${{ github.event.release.tag_name }}"