Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/update-docs-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
ref: main
- name: Update latest_version property in mkdocs.yml
run: |
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF_NAME}/g" mkdocs.yml
git diff
- name: Create Pull Request
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v3.10.1
with:
title: Update docs version to ${GITHUB_REF##*/}
title: Update docs version to ${{ github.ref_name }}
body: |
Update docs version to ${GITHUB_REF##*/}
Update docs version to ${{ github.ref_name }}
skip-checks: true
branch: update-docs-version
delete-branch: true
6 changes: 3 additions & 3 deletions .github/workflows/update-testcontainers-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
ref: main
- name: Update testcontainers.version property in gradle.properties
run: |
sed -i "s/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF##*/}/g" gradle.properties
sed -i "s/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF_NAME}/g" gradle.properties
git diff
- name: Create Pull Request
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v3.10.1
with:
title: Update testcontainers version to ${GITHUB_REF##*/}
title: Update testcontainers version to ${{ github.ref_name }}
body: |
Update testcontainers version to ${GITHUB_REF##*/}
Update testcontainers version to ${{ github.ref_name }}
branch: update-tc-version
delete-branch: true