fix: do not include _Service and _entities in the federated graph (#19) #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Preview | |
on: | |
push: | |
tags-ignore: | |
- '**' | |
branches: | |
- 'main' | |
paths-ignore: | |
- 'docs*/**' | |
- '*.md' | |
concurrency: | |
group: ${{github.workflow}}-${{github.head_ref}} | |
cancel-in-progress: false | |
env: | |
CI: true | |
jobs: | |
version: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/node | |
- name: Install | |
run: | | |
pnpm add -g @lerna-lite/[email protected] @lerna-lite/[email protected] @lerna-lite/[email protected] @commitlint/[email protected] | |
- name: Generate next release (dry-run) | |
run: pnpm run release-preview --yes | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Show CHANGELOG.md | |
run: echo -e "\`\`\`diff\n$(git --no-pager diff './*/CHANGELOG.md')\n\`\`\`" >> $GITHUB_STEP_SUMMARY |