mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Validate changie for merges to main
This commit is contained in:
parent
dae36f6540
commit
9351c239aa
1 changed files with 9 additions and 0 deletions
9
.github/workflows/changie-pr.yml
vendored
9
.github/workflows/changie-pr.yml
vendored
|
|
@ -23,6 +23,15 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
# Validate that changes exist
|
||||
- name: Check for Changie entries
|
||||
run: |
|
||||
if [ -z "$(ls -A .changes/unreleased 2>/dev/null)" ]; then
|
||||
echo "Error: No Changie entries found in .changes/unreleased/"
|
||||
echo "Please run 'npm run changie new' and commit the generated change file"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Use Changie to batch changes and get the next version
|
||||
- name: Batch changes
|
||||
id: batch
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue