Skip to content

Commit

Permalink
Merge branch 'main' into update-mediawiki-1.43
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka authored Feb 25, 2025
2 parents a0b1d50 + 9965fdb commit a7b4f58
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
if: github.event_name != 'pull_request'
id: update-values
run: |
TAG="$GITHUB_REF_NAME"
TAG="$(echo ${{ steps.docker_meta.outputs.tags }} | cut -d':' -f2)"
echo "tag=$TAG" >> $GITHUB_OUTPUT
sed -i "/image:/{n;s/tag:.*/tag: $TAG/;}" ./repos/wbaas-deploy-staging/k8s/helmfile/env/local/mediawiki-139.values.yaml.gotmpl
sed -i "/image:/{n;s/tag:.*/tag: $TAG/;}" ./repos/wbaas-deploy-staging/k8s/helmfile/env/staging/mediawiki-139.values.yaml.gotmpl
Expand All @@ -84,15 +84,15 @@ jobs:
if: github.event_name != 'pull_request'
id: truncate-commit-message
run: |
MSG=$(echo "${{ github.event.head_commit.message }}" | head -n 1)
MSG=$(git log -1 --pretty=format:%s)
echo "msg=$MSG" >> $GITHUB_OUTPUT
-
uses: peter-evans/create-pull-request@v4
if: github.event_name != 'pull_request'
with:
path: ./repos/wbaas-deploy-staging
commit-message: 'Staging+Local: Deploy new MediaWiki image ${{ steps.update-values.outputs.tag }}'
title: 'Staging+Local: Deploy new MediaWiki image ${{ steps.update-values.outputs.tag }}'
commit-message: 'Staging+Local: Deploy new MediaWiki image ${{ steps.docker_meta.outputs.tags }}'
title: 'Staging+Local: Deploy new MediaWiki image ${{ steps.docker_meta.outputs.tags }}'
branch: deploy-to-staging-${{ steps.update-values.outputs.tag }}
committer: wmdebot <github-bots@wikimedia.de>
author: wmdebot <github-bots@wikimedia.de>
Expand All @@ -107,8 +107,8 @@ jobs:
if: github.event_name != 'pull_request'
with:
path: ./repos/wbaas-deploy-production
commit-message: 'Production: Deploy new MediaWiki image ${{ steps.update-values.outputs.tag }}'
title: 'Production: Deploy new MediaWiki image ${{ steps.update-values.outputs.tag }}'
commit-message: 'Production: Deploy new MediaWiki image ${{ steps.docker_meta.outputs.tags }}'
title: 'Production: Deploy new MediaWiki image ${{ steps.docker_meta.outputs.tags }}'
branch: deploy-to-production-${{ steps.update-values.outputs.tag }}
committer: wmdebot <github-bots@wikimedia.de>
author: wmdebot <github-bots@wikimedia.de>
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Tags have the format: `<MediaWiki core version>-<PHP Version>-<date>-<build number>`

# 1.39-7.4-20250116-0
- Assume `https://` only in docker-compose setup

# 1.39-7.4-20250115-0
- Add Shape Expression Validator URL to EntitySchema (#469)

Expand Down

0 comments on commit a7b4f58

Please sign in to comment.