Skip to content

build(deps-dev): bump prettier from 3.5.3 to 3.6.2 in /workspaces/con… #358

build(deps-dev): bump prettier from 3.5.3 to 3.6.2 in /workspaces/con…

build(deps-dev): bump prettier from 3.5.3 to 3.6.2 in /workspaces/con… #358

Workflow file for this run

name: Release all workspaces
on:
push:
branches:
- main
workflow_dispatch:
jobs:
find-changed-workspaces:
name: Detect workspace changes
runs-on: ubuntu-latest
outputs:
workspaces: ${{ steps.find-changed-workspaces.outputs.workspaces }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
- name: Set up Node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: 22
registry-url: https://registry.npmjs.org/ # Needed for auth
package-manager-cache: false
- name: Fetch previous commit for check
run: git fetch origin '${{ github.event.before }}'
- name: Find changed workspaces
id: find-changed-workspaces
run: node ./scripts/ci/list-workspaces-with-changes.js
env:
COMMIT_SHA_BEFORE: "${{ github.event.before }}"
maybe-release-workspace:
name: Maybe release ${{ matrix.workspace }}
needs: find-changed-workspaces
if: ${{ needs.find-changed-workspaces.outputs.workspaces != '[]' }}
strategy:
fail-fast: false
matrix:
workspace: ${{ fromJSON(needs.find-changed-workspaces.outputs.workspaces) }}
uses: ./.github/workflows/release_workspace.yml
with:
workspace: ${{ matrix.workspace }}
secrets: inherit