feat(docs): add the os menu #2196
Workflow file for this run
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
name: Lint PR Title | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
name: PR Title Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Optionally, you can provide options for further constraints. | |
with: | |
# Configure which types are allowed. | |
# Default: https://github.com/commitizen/conventional-commit-types | |
types: | | |
chore | |
content | |
fix | |
refactor | |
feat | |
test | |
experiment | |
# Configure which scopes are allowed. | |
scopes: | | |
docs | |
theme | |
deps | |
misc | |
# Configure that a scope must always be provided. | |
requireScope: true | |
# For work-in-progress PRs you can typically use draft pull requests | |
# from Github. However, private repositories on the free plan don't have | |
# this option and therefore this action allows you to opt-in to using the | |
# special "[WIP]" prefix to indicate this state. This will avoid the | |
# validation of the PR title and the pull request checks remain pending. | |
# Note that a second check will be reported if this is enabled. | |
wip: true |