File: pr.yml

package info (click to toggle)
dracut 109-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,756 kB
  • sloc: sh: 24,508; ansic: 5,234; makefile: 346; perl: 186; python: 48; javascript: 19
file content (21 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
name: Commisery
on:  # yamllint disable-line rule:truthy
  pull_request:
    branches: [main]

jobs:
  commit-message:
    name: Conventional Commit Message Checker (Commisery)
    runs-on: ubuntu-latest
    steps:
      - name: Check-out the repo under $GITHUB_WORKSPACE
        uses: actions/checkout@v5

      - name: Run Commisery
        uses: tomtom-international/commisery-action@v3
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          # don't validate the pull request title
          validate-pull-request: false
          validate-pull-request-title-bump: false