/
githubmirror
/
jekyll
Обзор
Документация
Войти
/
githubmirror
/
jekyll
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/conventional-commits.yml
50 строк
1 KB
Matt Rogers
feat!: Streamline the release process for Jekyll (#9760)
17 апр 2026, 21:38
Не верифицирован
17 апр 2026, 21:38
5cf05d7
Код
Авторство
О чём код?
# This workflow checks to ensure that all PR titles conform to the conventional # commit spec and use the correct type and scopes. The spec for conventional # commits can be found at https://www.conventionalcommits.org and there is a # nice cheatsheet in a github gist at # https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13 # # The types in this workflow match the spec. The scopes are custom to # Jekyll and can be changed if desired. name: Conventional Commit Check permissions: pull-requests: read on: pull_request_target: types: [opened, edited, synchronize, reopened, ready_for_review] branches: - master jobs: commit_lint: runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@v5.5.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: types: | feat fix perf refactor docs style test chore scopes: | core cli commands plugins site helpers converters filters tags drops tests docs requireScope: false