Skip to content

chore: Add Commit Checker github action #31

chore: Add Commit Checker github action

chore: Add Commit Checker github action #31

Workflow file for this run

name: Commit Checker
on:
pull_request:
types:
- opened
- reopened
- closed
- synchronize
workflow_dispatch:
env:
RESOURCES_DIR: ${{ github.workspace }}/.github/resources
jobs:
commit_checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name github-actions
git config user.email [email protected]
git --no-pager log master...HEAD --pretty=oneline
docker run -v ${{ github.workspace }}:/src/app-root quay.io/rmartine/commitchecker:latest --start master --end HEAD