feat(cli): add PR update feature for local SDK generation (#11502) #3426
This file contains hidden or 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: Validate Changelog | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/seed/src/commands/validate/**/*" | |
| - "packages/cli/cli/versions.yml" | |
| - "packages/generator-cli/versions.yml" | |
| - "generators/**/versions.yml" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/seed/src/commands/validate/**/*" | |
| - "packages/cli/cli/versions.yml" | |
| - "packages/generator-cli/versions.yml" | |
| - "generators/**/versions.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: "buildwithfern" | |
| jobs: | |
| validate-changelogs: | |
| name: Validate Changelogs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo at current ref | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install | |
| uses: ./.github/actions/install | |
| - name: Seed Build | |
| run: pnpm seed:build | |
| - name: Validate changelogs | |
| run: pnpm scripts/validate-all-changelogs.sh |