Skip to content

fix(sbb-select): select shows selected value in form field instead of the label #1539

fix(sbb-select): select shows selected value in form field instead of the label

fix(sbb-select): select shows selected value in form field instead of the label #1539

Workflow file for this run

name: PR Title Linter
on:
pull_request:
types: [opened, edited, reopened, unlocked]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: 'Yarn: Install'
uses: ./.github/actions/yarn-install
- name: 'Lint: Pull request title'
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "$PR_TITLE" | yarn commitlint
- name: 'Warning: Pull request title must match conventional commits pattern!'
if: ${{ failure() }}
run: echo "Pull request title must match conventional commits pattern!"