Skip to content

Commit

Permalink
ci: check PR description in prlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler authored Jul 12, 2024
1 parent 9ded4d0 commit b4fad00
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/prlint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check PR title
name: Check PR style

on:
pull_request_target:
Expand All @@ -9,11 +9,20 @@ on:
- synchronize

jobs:
lint:
title-lint:
runs-on: ubuntu-latest
permissions:
statuses: write
steps:
- uses: aslafy-z/conventional-pr-title-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
check-pr-description:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: jadrol/pr-description-checker-action@v1.0.0
id: description-checker
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
exempt-labels: no qa

0 comments on commit b4fad00

Please sign in to comment.