OCM-9892 | feat: add root disk size to TF provider #1157
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
# following the contribution guide this check enforces the commit format | |
# [JIRA-TICKET] | [TYPE]: <MESSAGE> | |
name: 'Validate Commit Messages' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
parse-commit-messages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Validate Commit Message(s) | |
env: | |
BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
HEAD_SHA: ${{ github.event.pull_request.head.sha }} | |
PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
run: | | |
IFS=$'\n' commit_messages=($(git log --pretty=format:"%s" $BASE_SHA...$HEAD_SHA)) | |
# Lists of GitHub users for whom the commit validation should be skipped: | |
# * red-hat-konflux[bot] - automatic bot responsible for any change related to | |
# RHTAP integration (changes in https://github.com/terraform-redhat/terraform-provider-rhcs/blob/main/.tekton/terraform-provider-rhcs-push.yaml) | |
# * dependabot[bot] - bot responsible for merging dependecies updates | |
declare -a skip_pr_authors=( | |
"red-hat-konflux[bot]" | |
"dependabot[bot]" | |
) | |
echo "The PR Author is \"${PR_AUTHOR}\"" | |
for skip_pr_author in "${skip_pr_authors[@]}" | |
do | |
if [ "${PR_AUTHOR}" = "${skip_pr_author}" ]; then | |
echo "The commits created by this PR author (probably bot) should be skipped!!!" | |
exit 0 | |
fi | |
done | |
for message in "${commit_messages[@]}" | |
do | |
echo "validating commit message:\"$message\"" | |
if ! echo "$message" | grep -qE "^[A-Z]+-[0-9]+ \| (feat|fix|docs|style|refactor|test|chore|build|ci|perf): .*$"; then | |
echo "Invalid commit message format. Expected format: JIRA_TICKET | TYPE: MESSAGE" | |
echo "Where:" | |
echo " JIRA_TICKET is jira ticket ID (for example OCM-xxx)" | |
echo " TYPE must be one of the options (case sensitive):" | |
echo " feat, fix, docs, style, refactor, test, chore, build, ci, perf" | |
exit 1 | |
fi | |
done |