Skip to content

Commit 0f44ace

Browse files
committed
fix: Continue systematic YAML fixes - significant progress made
1 parent 7ec36bc commit 0f44ace

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/enhanced-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ jobs:
360360

361361
test-storage:
362362
name: Test Storage Crate
363-
runs-on: ubuntu-latest
364-
needs: [preflight, build]
365-
if: needs.preflight.outputs.storage == 'true' || needs.preflight.outputs.ci == 'true'
366-
steps:
363+
runs-on: ubuntu-latest
364+
needs: [preflight, build]
365+
if: needs.preflight.outputs.storage == 'true' || needs.preflight.outputs.ci == 'true'
366+
steps:
367367
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
368368
- name: Install Rust
369369
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6

.github/workflows/optimized-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ env:
2828
CARGO_INCREMENTAL: 0
2929

3030
jobs:
31-
# Pre-flight checks and change detection
32-
preflight:
31+
# Pre-flight checks and change detection
32+
preflight:
3333
name: Preflight Checks
3434
runs-on: ubuntu-latest
3535
outputs:
@@ -173,10 +173,10 @@ preflight:
173173
- name: Install sccache
174174
uses: mozilla-actions/sccache-action@2e7f9ec7921547d4b46598398ca573513895d0bd
175175

176-
- name: Install Rust
177-
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
176+
- name: Install Rust
177+
uses: dtolnay/rust-toolchain@5d458579430fc14a04a08a1e7d3694f545e91ce6
178178

179-
- name: Install cargo-nextest
179+
- name: Install cargo-nextest
180180
uses: taiki-e/install-action@fa0639a7132933c4081764bded317e92c04e5c07
181181
with:
182182
tool: cargo-nextest

.github/workflows/version-sync.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ jobs:
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 @@ jobs:
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

0 commit comments

Comments
 (0)