-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checksโฆ
fix(ci): add PR compliance checks
1 parent
23aec41
commit a50a5ab
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: ๐ Check PR Compliance | ||
|
||
on: | ||
pull_request: | ||
types: | ||
[ | ||
opened, | ||
edited, | ||
synchronize, | ||
reopened, | ||
labeled, | ||
unlabeled, | ||
assigned, | ||
unassigned, | ||
] | ||
|
||
jobs: | ||
check-pr-compliance: | ||
name: โ Check PR for Compliance | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: ๐ง Check out repository code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: ๐ท๏ธ Show PR Labels and Assignees | ||
run: | | ||
echo "PR Labels: ${{ toJson(github.event.pull_request.labels) }}" | ||
echo "PR Assignees: ${{ toJson(github.event.pull_request.assignees) }}" | ||
- name: ๐ Verify PR Assignee | ||
run: | | ||
if [ "${{ toJson(github.event.pull_request.assignees) }}" == "[]" ]; then | ||
echo "๐ฎ This PR does not have any assignees. Please assign at least one assignee." | ||
exit 1 | ||
fi | ||
- name: ๐ท๏ธ Verify PR Label | ||
run: | | ||
if [ "${{ toJson(github.event.pull_request.labels) }}" == "[]" ]; then | ||
echo "๐ฎ This PR does not have any labels. Please assign at least one label." | ||
exit 1 | ||
fi | ||
- name: ๐ Check Commit Messages | ||
id: check_commits | ||
run: | | ||
#!/bin/bash | ||
set -e | ||
BASE_SHA=$(git merge-base ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }}) | ||
COMMITS=$(git log --pretty=format:"%s" $BASE_SHA..${{ github.event.pull_request.head.sha }}) | ||
INVALID_COMMITS=() | ||
while IFS= read -r commit; do | ||
if ! [[ $commit =~ ^(add|delete|update|fix|bump|security|refactor|style|test|docs|chore|perf|ci|build|revert)(\([a-z]+\))?:\ .+ ]]; then | ||
INVALID_COMMITS+=("$commit") | ||
fi | ||
done <<< "$COMMITS" | ||
if [ ${#INVALID_COMMITS[@]} -ne 0 ]; then | ||
echo "๐ฎ Warning: The following commits do not follow the 01-edu commit message convention:" | ||
for commit in "${INVALID_COMMITS[@]}"; do | ||
echo " - $commit" | ||
done | ||
echo " ๐ข Please consider updating your commit messages to follow the standard: https://github.com/01-edu/conventions/" | ||
exit 1 | ||
else | ||
echo "โ All commit messages follow the 01-edu convention." | ||
fi | ||
continue-on-error: true |