chore: Add Commit Checker github action #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |