-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix out-of-memory crash when parsing link previews - Fix display of qr-code button when viewing own omemo keys - Make discovery of group/channel names more reliable - Don't crash on errors when adding a new account - Don't leave messages in "Sending..." state after resuming the app from background - Allow adding gateway jids as contacts - Make group/channel detection more reliable when adding via jid
- Loading branch information
Showing
21 changed files
with
933 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Check PR title for proper semver | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- beta | ||
- stable | ||
|
||
workflow_dispatch: | ||
inputs: | ||
pr_number: | ||
description: "Pull request number to check" | ||
required: true | ||
type: number | ||
|
||
jobs: | ||
check-pr-semver-title: | ||
runs-on: ubuntu-latest | ||
name: Validate PR Title | ||
|
||
steps: | ||
- name: Get PR details | ||
id: find_pr | ||
run: | | ||
if [ -z "${{ github.event.inputs.pr_number }}" ]; then | ||
prNumber=${{ github.event.pull_request.number }} | ||
else | ||
prNumber=${{ github.event.inputs.pr_number }} | ||
fi | ||
echo "prNumber=$prNumber" | tee /dev/stderr >> "$GITHUB_OUTPUT" | ||
- name: Fetch pull request title | ||
id: pr_title | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const [owner, repo] = process.env.GITHUB_REPOSITORY.split("/"); | ||
const prNumber = ${{ steps.find_pr.outputs.prNumber }}; | ||
const { data: pull_request } = await github.rest.pulls.get({ | ||
owner: owner, | ||
repo: repo, | ||
pull_number: prNumber | ||
}); | ||
return pull_request.title; | ||
- name: Check PR title format | ||
run: | | ||
version="${{ steps.pr_title.outputs.result }}" | ||
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" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.