You've already forked EightBittr
mirror of
https://github.com/FullScreenShenanigans/EightBittr.git
synced 2026-04-28 12:58:51 -07:00
19 lines
417 B
YAML
19 lines
417 B
YAML
name: "Pull Request Title"
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types:
|
|
- opened
|
|
- edited
|
|
- reopened
|
|
- synchronize
|
|
|
|
jobs:
|
|
pull_request_title:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/prepare
|
|
- name: Commitlint on PR Title
|
|
run: echo "${{github.event.pull_request.title}}" | npx commitlint
|