Skip to content

fix(app): handle SIGINT so the app can close from a terminal #113

fix(app): handle SIGINT so the app can close from a terminal

fix(app): handle SIGINT so the app can close from a terminal #113

Workflow file for this run

name: Lint PR title
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
pull-requests: read
jobs:
lint:
name: Conventional commit title
runs-on: ubuntu-latest
steps:
- name: Lint PR title
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Conventional commit types accepted in titles. Mirrors the set the
# PR labeler recognizes in .github/workflows/labeler.yml.
types: |
feat
fix
perf
refactor
revert
docs
ci
build
chore
test
style
# Subject must start lowercase and not end with a period.
subjectPattern: ^(?![A-Z])(?!.*\.$).+$
subjectPatternError: |
The subject "{subject}" found in "{title}" must start with a
lowercase letter and must not end with a period.