Skip to content
Open
Show file tree
Hide file tree
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-3188: Removed extra unused parameter
  • Loading branch information
XxdpavelxX committed Dec 12, 2025
commit 6f56ea5185a7ae6a71ea39ebd4ccd89843355e9c
5 changes: 0 additions & 5 deletions .github/actions/release-branch-sync/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ inputs:
merged-release-branch:
required: true
description: 'The release branch that was just merged into stable (e.g., release/7.35.0)'
repo-type:
required: false
description: 'Type of repository (mobile or extension)'
default: 'mobile'
github-token:
description: 'GitHub token used for authentication and PR creation.'
required: true
Expand Down Expand Up @@ -46,7 +42,6 @@ runs:
- name: Run release branch sync script
env:
MERGED_RELEASE_BRANCH: ${{ inputs.merged-release-branch }}
REPO_TYPE: ${{ inputs.repo-type }}
GITHUB_TOKEN: ${{ inputs.github-token }}
shell: bash
run: bash ./github-tools/.github/scripts/release-branch-sync.sh
Expand Down
2 changes: 0 additions & 2 deletions .github/scripts/release-branch-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#
# Environment variables:
# MERGED_RELEASE_BRANCH - The release branch that was just merged (e.g., release/7.35.0)
# REPO_TYPE - Repository type: 'mobile' or 'extension'
# GITHUB_TOKEN - GitHub token for authentication and PR creation
# =============================================================================

Expand Down Expand Up @@ -281,7 +280,6 @@ main() {
fi

log_info "Merged release branch: ${MERGED_RELEASE_BRANCH}"
log_info "Repository type: ${REPO_TYPE:-not set}"

# Get version of the merged release
local merged_version
Expand Down
Loading