From 0c8a24025164cc7a491d818e5fe45fc1db448bfe Mon Sep 17 00:00:00 2001 From: adongare Date: Tue, 13 Feb 2024 17:12:50 -0500 Subject: [PATCH] git action debugging --- .github/workflows/commit_message_validation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit_message_validation.yml b/.github/workflows/commit_message_validation.yml index c0acb08..b230309 100644 --- a/.github/workflows/commit_message_validation.yml +++ b/.github/workflows/commit_message_validation.yml @@ -23,9 +23,9 @@ jobs: # This list permits some commits commit_static_permit_list="(^Merge pull request \#)|(^Merge branch)|(^Revert \")" # Initialize invalidCommit as false, will be set to true by any invalid commits - invalidCommit=false - # Find hash of commit most common ancestor, e.g. where branch began - BRANCH_MERGE_BASE=$(git merge-base ${BASE_BRANCH} ${CURRENT_BRANCH}) - # Find all commits since common ancestor - BRANCH_COMMITS=$(git rev-list ${BRANCH_MERGE_BASE}..HEAD) +# invalidCommit=false +# # Find hash of commit most common ancestor, e.g. where branch began +# BRANCH_MERGE_BASE=$(git merge-base ${BASE_BRANCH} ${CURRENT_BRANCH}) +# # Find all commits since common ancestor +# BRANCH_COMMITS=$(git rev-list ${BRANCH_MERGE_BASE}..HEAD) exit 0 \ No newline at end of file