style: make sure everything is synced with figma #9180
This file contains 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 | |
jobs: | |
lint-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# check for the most recent release: https://github.com/CondeNast/conventional-pull-request-action/releases | |
- uses: zentered/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
commitlintRulesPath: './commitlint.rules.js' |