chore: Add Commit Checker github action #36
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: 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 -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::" |