diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86dc629aa0b..d66a8556da4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,6 +44,6 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile - - name: Test and Build + - name: Build run: | pnpm run build diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 4bb1ee1a754..51df9ac6e51 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -15,10 +15,12 @@ jobs: - name: Validate PR title uses: amannn/action-semantic-pull-request@v5 with: + wip: true subjectPattern: ^(?![A-Z]).+$ subjectPatternError: | The subject "{subject}" found in the pull request title "{title}" didn't match the configured pattern. Please ensure that the subject doesn't start with an uppercase character. + requireScope: false env: GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} diff --git a/internal/lint-configs/commitlint-config/index.mjs b/internal/lint-configs/commitlint-config/index.mjs index 552a94c6cc1..8f8092d12ee 100644 --- a/internal/lint-configs/commitlint-config/index.mjs +++ b/internal/lint-configs/commitlint-config/index.mjs @@ -47,7 +47,6 @@ const userConfig = { defaultScope: scopeComplete, // English typesAppend: [ - { name: 'wip: work in process', value: 'wip' }, { name: 'workflow: workflow improvements', value: 'workflow' }, { name: 'types: type definition file changes', value: 'types' }, ], @@ -122,7 +121,7 @@ const userConfig = { 'header-max-length': [2, 'always', 108], 'scope-enum': [0], - 'subject-case': [0], + 'subject-case': [2, 'always', 'lower-case'], 'subject-empty': [2, 'never'], 'type-empty': [2, 'never'], /**