feat(repo): new design system #106
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: 'PR is Conventional and Semantic' | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| branches: | |
| - main | |
| - main-design-system # Remove this once the design system is merged into main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| conventional_pr_title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/[email protected] | |
| with: | |
| scopes: | | |
| llc | |
| ui | |
| repo | |
| requireScope: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| semantic_changelog_update: | |
| needs: conventional_pr_title # Trigger after the [conventional_pr_title] completes | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: GetStream/verify-semantic-changelog-update@main | |
| with: | |
| scopes: | | |
| { | |
| "llc": "packages/stream_core" | |
| } | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |