Skip to content

SystoleOS/guix-systole-check-commit-message-action

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

guix-systole-check-commit-message-action

This GitHub composite action verifies that commit messages conform to the guix-systole guidelines guidelines.

Usage

To automatically enforce the guix-systole commit message style during pull requests or pushes to the main branch, create a workflow file at .github/workflows/commit-message.yml with the following content:

name: "Commit Message Check"
on:
  pull_request:
    types:
      - opened
      - edited
      - reopened
      - synchronize
  push:
    branches:
      - main

permissions:
  contents: read
  pull-requests: read

jobs:
  check-commit-message:
    runs-on: ubuntu-latest
    steps:
      - name: Check Commit Message
        uses: SystoleOS/guix-systole-check-commit-message-action@v1.0.0
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

This workflow will trigger commit message checks on relevant pull request events or when changes are pushed to the main branch.

History

About

GitHub composite action to verify that commit messages conform to the guix-slicer commit style guidelines.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors