Skip to content

Bump pytest from 7.4.3 to 8.0.0 #54

Bump pytest from 7.4.3 to 8.0.0

Bump pytest from 7.4.3 to 8.0.0 #54

Workflow file for this run

name: "Commit Message Check"
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
check-commit-message:
name: Check Commit Message
runs-on: ubuntu-latest
steps:
- name: Check commit lines length
uses: gsactions/commit-message-checker@v2
with:
pattern: "^.{4,72}"
flags: "gms"
error: "The maximum line length of 72 characters is exceeded."
excludeDescription: "true"
excludeTitle: "true"
checkAllCommitMessages: "true"
accessToken: ${{ secrets.GITHUB_TOKEN }}
- name: Check for Resolves/Fixes links in PR description
uses: gsactions/commit-message-checker@v2
with:
pattern: '(Resolves|Fixes):? (?:https:\/\/github.com\/)?AlmaLinux\/build-system(\/issues\/|#)[0-9]+$'
error: 'You need at least one "Resolves|Fixes: <issue link>" line.'