Skip to content

Commit

Permalink
6.4.5-rc2 (#1264)
Browse files Browse the repository at this point in the history
- Fixed out-of-memory crash when parsing link previews
- Fixed display of qr-code button when viewing own omemo keys
  • Loading branch information
tmolitor-stud-tu authored Oct 14, 2024
2 parents 6129ea8 + ccf1f04 commit 231d709
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pr-semver-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check PR title for proper semver

on:
pull_request:
branches:
- beta
- stable

jobs:
check-pr-semver-title:
runs-on: ubuntu-latest
name: Validate PR Title

steps:
- name: Check PR title format
run: |
version="${{ github.event.pull_request.title }}"
if ! [[ "$version" =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-((0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(\+([0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*))?$ ]]; then
echo "Invalid semver: '$version'!"
exit 1
fi
echo "Version is proper semver: $version"

0 comments on commit 231d709

Please sign in to comment.