Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
INFRA-2911-Skip generating commits.cvs for hotfixes
  • Loading branch information
XxdpavelxX committed Sep 5, 2025
commit 66e16bf17be07570cf0b7611d46db8e4f02cf4e6
11 changes: 10 additions & 1 deletion .github/scripts/create-platform-release-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,18 @@ set -e
set -u
set -o pipefail

# Log all positional arguments for debugging
echo "Script called with arguments:"
echo "1 (PLATFORM): $1"
echo "2 (PREVIOUS_VERSION_REF): $2"
echo "3 (NEW_VERSION): $3"
echo "4 (NEW_VERSION_NUMBER): $4"
echo "5 (GIT_USER_NAME): $5"
echo "6 (GIT_USER_EMAIL): $6"

# Input validation
PLATFORM="${1}"
PREVIOUS_VERSION_REF="${2}"
PREVIOUS_VERSION_REF="${2//[[:space:]]/}" # Trim whitespace
NEW_VERSION="${3}"
NEW_VERSION_NUMBER="${4:-}"
GIT_USER_NAME="${5:-metamaskbot}"
Expand Down
Loading