Skip to content

Commit e7dce7e

Browse files
committed
fix: Correct YAML indentation in version-sync.yml
1 parent 31be407 commit e7dce7e

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/version-sync.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
with:
6161
fetch-depth: 0
6262

63-
- name: Analyze version state
64-
id: check
65-
run: |
63+
- name: Analyze version state
64+
id: check
65+
run: |
6666
echo "## 🔍 Version Analysis Report" >> $GITHUB_STEP_SUMMARY
6767
echo "" >> $GITHUB_STEP_SUMMARY
6868
@@ -157,20 +157,20 @@ jobs:
157157
158158
159159
160-
version-sync:
161-
name: Synchronize Versions
162-
runs-on: ubuntu-latest
163-
needs: analyze-versions
164-
if: needs.analyze-versions.outputs.needs_sync == 'true'
165-
steps:
160+
version-sync:
161+
name: Synchronize Versions
162+
runs-on: ubuntu-latest
163+
needs: analyze-versions
164+
if: needs.analyze-versions.outputs.needs_sync == 'true'
165+
steps:
166166
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
167167
with:
168168
token: ${{ secrets.GITHUB_TOKEN }}
169169
fetch-depth: 0
170170

171171
- uses: ./.github/actions/setup-rust
172172

173-
- name: Apply version synchronization
173+
- name: Apply version synchronization
174174
id: sync
175175
env:
176176
TARGET_VERSION: ${{ needs.analyze-versions.outputs.target_version }}
@@ -219,9 +219,9 @@ version-sync:
219219
echo "files_updated=false" >> $GITHUB_OUTPUT
220220
fi
221221
222-
- name: Validate workspace after sync
223-
if: steps.sync.outputs.files_updated == 'true'
224-
run: |
222+
- name: Validate workspace after sync
223+
if: steps.sync.outputs.files_updated == 'true'
224+
run: |
225225
echo "## 🧪 Validation Results" >> $GITHUB_STEP_SUMMARY
226226
echo "" >> $GITHUB_STEP_SUMMARY
227227
@@ -244,9 +244,9 @@ version-sync:
244244
manifest_version=$(jq -r '."."' .github/.release-please-manifest.json)
245245
echo "| release-please | $manifest_version |" >> $GITHUB_STEP_SUMMARY
246246
247-
- name: Update CHANGELOG with version sync
248-
if: steps.sync.outputs.files_updated == 'true'
249-
run: |
247+
- name: Update CHANGELOG with version sync
248+
if: steps.sync.outputs.files_updated == 'true'
249+
run: |
250250
TARGET_VERSION="${{ needs.analyze-versions.outputs.target_version }}"
251251
252252
# Check if there's already an entry for this version
@@ -277,9 +277,9 @@ version-sync:
277277
echo "ℹ️ CHANGELOG entry for $TARGET_VERSION already exists"
278278
fi
279279
280-
- name: Commit and push changes
281-
if: steps.sync.outputs.files_updated == 'true'
282-
run: |
280+
- name: Commit and push changes
281+
if: steps.sync.outputs.files_updated == 'true'
282+
run: |
283283
TARGET_VERSION="${{ needs.analyze-versions.outputs.target_version }}"
284284
SYNC_STRATEGY="${{ needs.analyze-versions.outputs.sync_strategy }}"
285285
@@ -312,8 +312,8 @@ Synchronized release-please manifest and updated CHANGELOG.md with version sync
312312
needs: [analyze-versions, version-sync]
313313
if: always()
314314
steps:
315-
- name: Create completion summary
316-
run: |
315+
- name: Create completion summary
316+
run: |
317317
echo "## 🎯 Version Management Workflow Complete" >> $GITHUB_STEP_SUMMARY
318318
echo "" >> $GITHUB_STEP_SUMMARY
319319

0 commit comments

Comments
 (0)