Skip to content

chore: Add Commit Checker github action #37

chore: Add Commit Checker github action

chore: Add Commit Checker github action #37

Workflow file for this run

name: Unit Tests
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
- name: Get Commits
id: get-commits
run: |
master_commit=$(cat .git/refs/remotes/origin/master)
echo "master_commit_hash=$master_commit" >> $GITHUB_OUTPUT
last_commit=$(cat .git/refs/remotes/pull/36/merge)
echo "last_commit_hash=$last_commit" >> $GITHUB_OUTPUT
- name: Run Commit Checker
run: |
echo "::group::Commit Checker results"
echo "::warning ==== These are the results of the commit checker scans ===="
podman run -q -v ${{ github.workspace }}:/src/app-root quay.io/rmartine/commitchecker:latest --start ${{ steps.get-commits.outputs.master_commit_hash }} --end ${{ steps.get-commits.outputs.last_commit_hash }}
echo "::warning ==== If these are not commits from upstream kfp, then ===="
echo "::warning ==== please ensure you adhere to the commit checker formatting ===="
echo "::endgroup::"