style(Field): add display: block
to <label>
#1442
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
# Runs conventional commit check on PR | |
name: Conventional pull request | |
on: | |
pull_request: | |
branches: | |
- main | |
- next | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
lint-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
# check for the most recent release: https://github.com/CondeNast/conventional-pull-request-action/releases | |
- uses: CondeNast/conventional-pull-request-action@3ce30fdb4d2beef8b941f23a1114dd8188eba082 # v0.2.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
commitlintRulesPath: './commitlint.rules.js' |