Skip to content

chore(ci): fix title in release #296

chore(ci): fix title in release

chore(ci): fix title in release #296

# # Run it locally with act (https://github.com/nektos/act)
# # 1. Install act:
# # `brew install act`
# # 2. Create a .secret file with the following content:
# # `GITHUB_TOKEN=your_github_token`
# # PULL REQUEST
# # 1. Create a act_pull_request.json file in case of a pull request with the following content:
# # `{"pull_request": {"number": <PR number>, "head": {"ref": "<PR branch name>", "sha": "PR commit sha"}, "base": {"ref": "main"}}, "repository": {"name": "juno", "owner": {"login": "cloudoperators"}}}`
# # 2. Run the following command:
# # `act pull_request -j run-pipeline -e act_pull_request.json -W .github/workflows/ci-npm-packages.yaml`
# name: Detect NPM Package Changes and trigger Pipeline
# on:
# pull_request:
# types: [opened, synchronize, reopened]
# paths:
# - "apps/**"
# - "packages/**"
# jobs:
# run-detect-changes:
# uses: cloudoperators/juno/.github/workflows/check-changes-npm-package.yaml@main
# with:
# paths: "apps packages"
# run-pipeline:
# needs: [run-detect-changes]
# strategy:
# matrix:
# change: ${{fromJson(needs.run-detect-changes.outputs.changes)}}
# node: [20.x]
# fail-fast: false # Allow other jobs to continue if one fails
# uses: cloudoperators/juno/.github/workflows/pipeline-npm-package.yaml@main
# with:
# path: ${{ matrix.change }}
# node: "${{ matrix.node }}"