mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
feat(ci): introduce PR title linting with GitHub Actions
This commit is contained in:
parent
eaac53ec38
commit
2c6397d020
1 changed files with 18 additions and 0 deletions
18
.github/workflows/check-pr-title.yml
vendored
Normal file
18
.github/workflows/check-pr-title.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
name: Check PR title
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- reopened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
statuses: write
|
||||||
|
steps:
|
||||||
|
- uses: aslafy-z/conventional-pr-title-action@v3
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Loading…
Reference in a new issue