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
chore: fix typos
  • Loading branch information
alucardzom committed Jul 4, 2025
commit 7b60ec044bf4d31c29f86bac82147ece5ef5dda3
4 changes: 2 additions & 2 deletions .github/scripts/generate-rc-commits.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async function filterCommitsByTeam(platform, branchA, branchB) {
console.log(`✓ Branch origin/${branchA} exists, using remote reference`);
branchA = `origin/${branchA}`;
} catch (remoteError) {
console.error(`✗ Branch ${branchA} does not exist remotely either`);
console.error(`✗ Branch ${branchA} does not exists remotely either`);
throw new Error(`Branch ${branchA} not found locally or remotely`);
}
}
Expand All @@ -114,7 +114,7 @@ async function filterCommitsByTeam(platform, branchA, branchB) {
console.log(`✓ Branch origin/${branchB} exists, using remote reference`);
branchB = `origin/${branchB}`;
} catch (remoteError) {
console.error(`✗ Branch ${branchB} does not exist remotely either`);
console.error(`✗ Branch ${branchB} does not exists remotely either`);
throw new Error(`Branch ${branchB} not found locally or remotely`);
}
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
echo "GitHub SHA: ${{ github.sha }}"
echo "-------------"

# # Step 5: Create Release PR
# Step 5: Create Release PR
- name: Create Release PR
id: create-release-pr
shell: bash
Expand Down
Loading